summaryrefslogtreecommitdiffstats
path: root/source/items/Item.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'source/items/Item.cpp')
-rw-r--r--source/items/Item.cpp4
1 files changed, 4 insertions, 0 deletions
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);
}
}