summaryrefslogtreecommitdiff
path: root/src/enums/resources
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2015-10-16 00:32:58 +0300
committerAndrei Karas <akaras@inbox.ru>2015-10-16 00:32:58 +0300
commitf672c7242dfa8d278d826f1e460af96265ca307c (patch)
tree623589aa9a104febeac4147ea349e05c76fb8c77 /src/enums/resources
parent6d44c69cb0cc9c2ac8a94c56c07ed45f63ab9726 (diff)
downloadplus-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/resources')
-rw-r--r--src/enums/resources/map/blocktype.h12
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);