diff options
Diffstat (limited to 'core/src/ch')
| -rw-r--r-- | core/src/ch/asynk/rustanddust/game/battles/Map00.java | 3 | 
1 files changed, 2 insertions, 1 deletions
| diff --git a/core/src/ch/asynk/rustanddust/game/battles/Map00.java b/core/src/ch/asynk/rustanddust/game/battles/Map00.java index db126cf..723a3b7 100644 --- a/core/src/ch/asynk/rustanddust/game/battles/Map00.java +++ b/core/src/ch/asynk/rustanddust/game/battles/Map00.java @@ -11,6 +11,7 @@ public class Map00 extends Map      public Map00(final RustAndDust game, String map, String hex)      {          super(game, map, hex); +        setup();      }      @Override @@ -31,7 +32,7 @@ public class Map00 extends Map          return cfg;      } -    protected void setup() +    private void setup()      {          getHex(6, 1).terrain = Hex.Terrain.HILLS;          getHex(5, 7).terrain = Hex.Terrain.HILLS; | 
