Re-order object types

This commit is contained in:
Marc Di Luzio 2020-07-19 13:27:59 +01:00
parent 713699687f
commit 4f1a9c2c2b
2 changed files with 15 additions and 15 deletions

View file

@ -152,13 +152,13 @@ enum Object {
RoverLive = 1;
// RoverDormant describes a dormant rover
RoverDormant = 4;
RoverDormant = 2;
// RockSmall is a small stashable rock
RockSmall = 2;
RockSmall = 3;
// RockLarge is a large blocking rock
RockLarge = 3;
RockLarge = 4;
}
enum Tile {