fix [CLB] Call to the Void (#10795)

This commit is contained in:
Susucre 2023-08-14 02:43:13 +02:00 committed by GitHub
parent 8457ce31c5
commit accb7c63bf
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -73,7 +73,7 @@ class CallToTheVoidEffect extends OneShotEffect {
Map<String, List<String>> map = new HashMap<>();
Set<Permanent> permanents = new HashSet<>();
for (UUID playerId : game.getState().getPlayersInRange(source.getControllerId(), game)) {
Player player = game.getPlayer(source.getControllerId());
Player player = game.getPlayer(playerId);
if (player != null) {
chooseCreature(map, permanents, StaticFilters.FILTER_CONTROLLED_CREATURE, player, source, game);
chooseCreature(map, permanents, StaticFilters.FILTER_CREATURE_YOU_DONT_CONTROL, player, source, game);