fixed top right slot in cannon not counting as an empty slot.

This commit is contained in:
NewGarbo 2016-01-26 09:26:51 +00:00
parent 467af4b835
commit 3b18b93286
1 changed files with 1 additions and 1 deletions

View File

@ -62,7 +62,7 @@ public class Cannon implements Listener
public static final int TNT_SLOT = 4;
public static final List<Integer> SULPHUR_SLOTS = Arrays.asList(1, 3, 5, 7);
public static final List<Integer> EMPTY_SLOTS = Arrays.asList(0, 6, 8);
public static final List<Integer> EMPTY_SLOTS = Arrays.asList(0, 2, 6, 8);
private Location _location;
private CannonState _state;