fix #11832 (The Enigma Jewel)

This commit is contained in:
xenohedron 2024-02-23 00:05:12 -05:00
parent 3598b79adc
commit f27a0c8b9a
4 changed files with 10 additions and 60 deletions

View file

@ -41,7 +41,7 @@ public class SkipNextTurnSourceEffect extends OneShotEffect {
public boolean apply(Game game, Ability source) {
UUID playerId = null;
if (source instanceof ActivatedAbilityImpl) {
playerId = ((ActivatedAbilityImpl) source).getActivatorId();
playerId = ((ActivatedAbilityImpl) source).getActivatorId(); // for Lethal Vapors
}
if (playerId == null) {
playerId = source.getControllerId();