diff options
author | lapayo94@gmail.com <lapayo94@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2012-08-23 22:41:48 +0200 |
---|---|---|
committer | lapayo94@gmail.com <lapayo94@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2012-08-23 22:41:48 +0200 |
commit | a39adadd0fb59fa9ac609c260fa935de5098a405 (patch) | |
tree | 7f7dadb5473f6fa2a3c6c6c679b5010f791b17d7 /source/items/Item.cpp | |
parent | Fixed WebAdmin showing tab names (thanks for pointing it out Lapayo) (diff) | |
download | cuberite-a39adadd0fb59fa9ac609c260fa935de5098a405.tar cuberite-a39adadd0fb59fa9ac609c260fa935de5098a405.tar.gz cuberite-a39adadd0fb59fa9ac609c260fa935de5098a405.tar.bz2 cuberite-a39adadd0fb59fa9ac609c260fa935de5098a405.tar.lz cuberite-a39adadd0fb59fa9ac609c260fa935de5098a405.tar.xz cuberite-a39adadd0fb59fa9ac609c260fa935de5098a405.tar.zst cuberite-a39adadd0fb59fa9ac609c260fa935de5098a405.zip |
Diffstat (limited to '')
-rw-r--r-- | source/items/Item.cpp | 4 |
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);
}
}
|