mirror of
https://github.com/magefree/mage.git
synced 2025-12-28 06:22:01 -08:00
fix #12022 (Shipwreck Sentry)
This commit is contained in:
parent
cb28fb5a56
commit
a3d4293e0d
3 changed files with 63 additions and 2 deletions
|
|
@ -50,7 +50,7 @@ public class PermanentsEnteredBattlefieldWatcher extends Watcher {
|
|||
}
|
||||
|
||||
public List<Permanent> getThisTurnEnteringPermanents(UUID playerId) {
|
||||
return enteringBattlefield.get(playerId);
|
||||
return enteringBattlefield.getOrDefault(playerId, Collections.emptyList());
|
||||
}
|
||||
|
||||
public boolean anotherCreatureEnteredBattlefieldUnderPlayersControlLastTurn(Permanent sourcePermanent, Game game) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue