diff options
Diffstat (limited to 'source/cChestEntity.h')
-rw-r--r-- | source/cChestEntity.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source/cChestEntity.h b/source/cChestEntity.h index d3d98739b..323eb0f8a 100644 --- a/source/cChestEntity.h +++ b/source/cChestEntity.h @@ -37,10 +37,10 @@ public: cItem * GetSlot( int a_Slot );
void SetSlot( int a_Slot, cItem & a_Item );
- bool LoadFromFile(cFile & a_File); // deprecated format
+ OBSOLETE bool LoadFromFile(cFile & a_File); // deprecated format
bool LoadFromJson( const Json::Value& a_Value );
- void SaveToJson( Json::Value& a_Value );
+ virtual void SaveToJson(Json::Value& a_Value ) override;
void SendTo( cClientHandle* a_Client, cServer* a_Server );
|