diff --git a/VC2010/MCServer.vcxproj b/VC2010/MCServer.vcxproj index 58e1a83d4..101b29501 100644 --- a/VC2010/MCServer.vcxproj +++ b/VC2010/MCServer.vcxproj @@ -656,6 +656,7 @@ + diff --git a/VC2010/MCServer.vcxproj.filters b/VC2010/MCServer.vcxproj.filters index fff2cf419..cde3385fa 100644 --- a/VC2010/MCServer.vcxproj.filters +++ b/VC2010/MCServer.vcxproj.filters @@ -1648,6 +1648,9 @@ Generating + + Items + diff --git a/source/items/Item.cpp b/source/items/Item.cpp index b645a8a93..17f4ead71 100644 --- a/source/items/Item.cpp +++ b/source/items/Item.cpp @@ -25,6 +25,7 @@ #include "ItemSword.h" #include "ItemDoor.h" #include "ItemFood.h" +#include "ItemSign.h" #include "../blocks/Block.h" @@ -162,6 +163,9 @@ cItemHandler *cItemHandler::CreateItemHandler(int a_ItemID) { return new cItemFoodHandler(a_ItemID); } + + case E_ITEM_SIGN: + return new cItemSignHandler(a_ItemID); } } diff --git a/source/items/ItemSign.h b/source/items/ItemSign.h new file mode 100644 index 000000000..06116f0e8 --- /dev/null +++ b/source/items/ItemSign.h @@ -0,0 +1,25 @@ +#pragma once + +#include "Item.h" +#include "../cWorld.h" + +class cItemSignHandler : public cItemHandler +{ +public: + cItemSignHandler(int a_ItemID) + : cItemHandler(a_ItemID) + { + + } + + virtual bool IsPlaceable() override + { + return true; + } + + virtual BLOCKTYPE GetBlockType() override + { + return E_BLOCK_SIGN_POST; + } + +}; \ No newline at end of file