mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-19 04:08:01 +00:00
Code cleanup
This commit is contained in:
@@ -59,8 +59,7 @@ public class RestartGameEffect extends SpellAbilityEffect {
|
||||
GameAction action = game.getAction();
|
||||
|
||||
List<Player> gamePlayers = game.getRegisteredPlayers();
|
||||
for( int i = 0; i < gamePlayers.size(); i++ ) {
|
||||
|
||||
for (int i = 0; i < gamePlayers.size(); i++) {
|
||||
final Player player = gamePlayers.get(i);
|
||||
if( player.hasLost()) continue;
|
||||
|
||||
|
||||
@@ -4,7 +4,6 @@ import forge.game.player.Player;
|
||||
import forge.util.Lang;
|
||||
|
||||
public class GameEventPlayerLivesChanged extends GameEvent {
|
||||
|
||||
public final Player player;
|
||||
public final int oldLives;
|
||||
public final int newLives;
|
||||
|
||||
Reference in New Issue
Block a user