summaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorJérémy Zurcher <jeremy@asynk.ch>2016-01-27 12:13:22 +0100
committerJérémy Zurcher <jeremy@asynk.ch>2016-01-27 22:26:28 +0100
commit1cc56859dd26e17966372fbf95e4b0f4f8578b52 (patch)
tree7af5d579debfe52fd0647fcda58b291b22d20ef0 /core
parent8a15825b13459d74e1ce157c90881dad92c87e3d (diff)
downloadRustAndDust-1cc56859dd26e17966372fbf95e4b0f4f8578b52.zip
RustAndDust-1cc56859dd26e17966372fbf95e4b0f4f8578b52.tar.gz
BattleCommon: getNextPlayer is protected
Diffstat (limited to 'core')
-rw-r--r--core/src/ch/asynk/rustanddust/game/battles/BattleCommon.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/src/ch/asynk/rustanddust/game/battles/BattleCommon.java b/core/src/ch/asynk/rustanddust/game/battles/BattleCommon.java
index 205af5e..4d75857 100644
--- a/core/src/ch/asynk/rustanddust/game/battles/BattleCommon.java
+++ b/core/src/ch/asynk/rustanddust/game/battles/BattleCommon.java
@@ -171,7 +171,7 @@ public abstract class BattleCommon implements Battle
}
}
- public Player getNextPlayer()
+ protected Player getNextPlayer()
{
return getOpponent();
}