From 323612e5c0bb5e6f7bf680c14f0340a71ee8c977 Mon Sep 17 00:00:00 2001 From: "madmaxoft@gmail.com" Date: Mon, 6 Aug 2012 10:36:20 +0000 Subject: BLOCKTYPE signedness change - fixed more details git-svn-id: http://mc-server.googlecode.com/svn/trunk@713 0a769ca7-a7f5-676a-18bf-c427514a06d6 --- source/blocks/Block.cpp | 2 +- source/blocks/Block.h | 2 +- source/blocks/BlockOre.h | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) (limited to 'source/blocks') diff --git a/source/blocks/Block.cpp b/source/blocks/Block.cpp index 0df3e8374..215a6c618 100644 --- a/source/blocks/Block.cpp +++ b/source/blocks/Block.cpp @@ -148,7 +148,7 @@ cBlockHandler *cBlockHandler::CreateBlockHandler(BLOCKTYPE a_BlockID) case E_BLOCK_GOLD_ORE: case E_BLOCK_REDSTONE_ORE: case E_BLOCK_REDSTONE_ORE_GLOWING: - case (char)E_BLOCK_EMERALD_ORE: + case E_BLOCK_EMERALD_ORE: case E_BLOCK_IRON_ORE: case E_BLOCK_LAPIS_ORE: case E_BLOCK_COAL_ORE: diff --git a/source/blocks/Block.h b/source/blocks/Block.h index e35856459..0a5724ca3 100644 --- a/source/blocks/Block.h +++ b/source/blocks/Block.h @@ -46,7 +46,7 @@ public: static void Deinit(); protected: - char m_BlockID; + BLOCKTYPE m_BlockID; static cBlockHandler *CreateBlockHandler(BLOCKTYPE a_BlockID); static cBlockHandler *m_BlockHandler[256]; static bool m_HandlerInitialized; //used to detect if the blockhandlers are initialized diff --git a/source/blocks/BlockOre.h b/source/blocks/BlockOre.h index 1230f72e8..4788c9b89 100644 --- a/source/blocks/BlockOre.h +++ b/source/blocks/BlockOre.h @@ -46,7 +46,7 @@ public: case E_BLOCK_REDSTONE_ORE: case E_BLOCK_REDSTONE_ORE_GLOWING: return E_ITEM_REDSTONE_DUST; - case (char)E_BLOCK_EMERALD_ORE: + case E_BLOCK_EMERALD_ORE: return E_ITEM_EMERALD; case E_BLOCK_LAPIS_ORE: return E_ITEM_DYE; -- cgit v1.2.3