diff options
author | madmaxoft <github@xoft.cz> | 2014-07-27 23:15:51 +0200 |
---|---|---|
committer | madmaxoft <github@xoft.cz> | 2014-07-27 23:15:51 +0200 |
commit | fd4ee20b2a927649b4671be95dccc8644c96e5ab (patch) | |
tree | b7cb50dc47d537c99a22b64109598171dbf092ed /src | |
parent | Merge pull request #1236 from Howaner/Inventory2 (diff) | |
download | cuberite-fd4ee20b2a927649b4671be95dccc8644c96e5ab.tar cuberite-fd4ee20b2a927649b4671be95dccc8644c96e5ab.tar.gz cuberite-fd4ee20b2a927649b4671be95dccc8644c96e5ab.tar.bz2 cuberite-fd4ee20b2a927649b4671be95dccc8644c96e5ab.tar.lz cuberite-fd4ee20b2a927649b4671be95dccc8644c96e5ab.tar.xz cuberite-fd4ee20b2a927649b4671be95dccc8644c96e5ab.tar.zst cuberite-fd4ee20b2a927649b4671be95dccc8644c96e5ab.zip |
Diffstat (limited to '')
-rw-r--r-- | src/Items/ItemHandler.cpp | 2 | ||||
-rw-r--r-- | src/Items/ItemSword.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/Items/ItemHandler.cpp b/src/Items/ItemHandler.cpp index ec86648b3..d36b5d663 100644 --- a/src/Items/ItemHandler.cpp +++ b/src/Items/ItemHandler.cpp @@ -366,7 +366,7 @@ void cItemHandler::OnFoodEaten(cWorld * a_World, cPlayer * a_Player, cItem * a_I short cItemHandler::GetDurabilityLossByAction(eDurabilityLostAction a_Action) { - switch (a_Action) + switch ((int)a_Action) { case dlaAttackEntity: return 2; case dlaBreakBlock: return 1; diff --git a/src/Items/ItemSword.h b/src/Items/ItemSword.h index b90965535..2b2dbfc0d 100644 --- a/src/Items/ItemSword.h +++ b/src/Items/ItemSword.h @@ -46,7 +46,7 @@ public: virtual short GetDurabilityLossByAction(eDurabilityLostAction a_Action) override { - switch (a_Action) + switch ((int)a_Action) { case dlaAttackEntity: return 1; case dlaBreakBlock: return 2; |