diff --git a/server/gameserver/constant.h b/server/gameserver/constant.h index 14ce3cc..ca25651 100755 --- a/server/gameserver/constant.h +++ b/server/gameserver/constant.h @@ -337,6 +337,7 @@ enum ObstacleType_e kObstacleHideHouse = 6, kObstacleGully = 7, kObstacleAirDropBox = 8, + kObstacleOilBucket = 9, }; enum OptResult diff --git a/server/gameserver/loot.h b/server/gameserver/loot.h index f0be614..37a71ee 100644 --- a/server/gameserver/loot.h +++ b/server/gameserver/loot.h @@ -24,6 +24,7 @@ class Loot : public RoomEntity a8::Vec2 born_pos; bool show_anim = false; long long create_frame_no = 0; + int dummy_thing_uniid = 0; virtual ~Loot() override; virtual void Initialize() override; @@ -36,4 +37,3 @@ protected: friend class EntityFactory; }; -