mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-20 12:48:00 +00:00
remove more null literals where overloads that pass null exist
This commit is contained in:
@@ -2433,9 +2433,9 @@ public class PlayerControllerHuman extends PlayerController implements IGameCont
|
||||
TextUtil.concatWithSpace("Should", forgeCard.toString(), "be added to the top or to the bottom of the library?"), true, Arrays.asList("Top", "Bottom"));
|
||||
}
|
||||
if (lastTopOfTheLibrary) {
|
||||
game.getAction().moveToLibrary(forgeCard, null, null);
|
||||
game.getAction().moveToLibrary(forgeCard, null);
|
||||
} else {
|
||||
game.getAction().moveToBottomOfLibrary(forgeCard, null, null);
|
||||
game.getAction().moveToBottomOfLibrary(forgeCard, null);
|
||||
}
|
||||
} else {
|
||||
game.getAction().moveTo(targetZone, forgeCard, null);
|
||||
|
||||
Reference in New Issue
Block a user