diff options
author | Andrei Karas <akaras@inbox.ru> | 2015-10-16 00:32:58 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2015-10-16 00:32:58 +0300 |
commit | f672c7242dfa8d278d826f1e460af96265ca307c (patch) | |
tree | 623589aa9a104febeac4147ea349e05c76fb8c77 /src/enums | |
parent | 6d44c69cb0cc9c2ac8a94c56c07ed45f63ab9726 (diff) | |
download | plus-f672c7242dfa8d278d826f1e460af96265ca307c.tar.gz plus-f672c7242dfa8d278d826f1e460af96265ca307c.tar.bz2 plus-f672c7242dfa8d278d826f1e460af96265ca307c.tar.xz plus-f672c7242dfa8d278d826f1e460af96265ca307c.zip |
Impliment packet SMSG_MAP_SET_TILES_TYPE (hercules)
This allow change collision types from server.
Diffstat (limited to 'src/enums')
-rw-r--r-- | src/enums/resources/map/blocktype.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/enums/resources/map/blocktype.h b/src/enums/resources/map/blocktype.h index af8acdb79..9a866273c 100644 --- a/src/enums/resources/map/blocktype.h +++ b/src/enums/resources/map/blocktype.h @@ -27,12 +27,12 @@ enumStart(BlockType) { - NONE = -1, - WALL, - AIR, - WATER, - GROUND, - GROUNDTOP, + NONE = -1, + GROUND = 0, + WALL = 1, + AIR = 2, + WATER = 3, + GROUNDTOP = 4, NB_BLOCKTYPES } enumEnd(BlockType); |