small adjustment to 0967f057

This commit is contained in:
xenohedron 2025-12-21 02:25:26 -05:00
parent 045510545f
commit 7751a0d084

View file

@ -44,7 +44,7 @@ public class PermanentsSacrificedWatcher extends Watcher {
}
public List<Permanent> getThisTurnSacrificedPermanents(UUID playerId) {
return sacrificedPermanents.getOrDefault(playerId, new ArrayList<>());
return sacrificedPermanents.getOrDefault(playerId, Collections.emptyList());
}
public int getThisTurnSacrificedPermanents() {