diff options
author | madmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2012-08-18 11:56:28 +0200 |
---|---|---|
committer | madmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2012-08-18 11:56:28 +0200 |
commit | 2691e8daed826e944ca38f4787c77273edbf9404 (patch) | |
tree | 3f9fca349df2253c2c314abf2e0c22e8af7f9604 /source/cItem.cpp | |
parent | Added Core files to the VC2008 project (so that they can be opened from the IDE there, nothing more) (diff) | |
download | cuberite-2691e8daed826e944ca38f4787c77273edbf9404.tar cuberite-2691e8daed826e944ca38f4787c77273edbf9404.tar.gz cuberite-2691e8daed826e944ca38f4787c77273edbf9404.tar.bz2 cuberite-2691e8daed826e944ca38f4787c77273edbf9404.tar.lz cuberite-2691e8daed826e944ca38f4787c77273edbf9404.tar.xz cuberite-2691e8daed826e944ca38f4787c77273edbf9404.tar.zst cuberite-2691e8daed826e944ca38f4787c77273edbf9404.zip |
Diffstat (limited to '')
-rw-r--r-- | source/cItem.cpp | 25 |
1 files changed, 16 insertions, 9 deletions
diff --git a/source/cItem.cpp b/source/cItem.cpp index f13b9cbf3..fd71a0b54 100644 --- a/source/cItem.cpp +++ b/source/cItem.cpp @@ -28,24 +28,31 @@ void cItem::FromJson( const Json::Value & a_Value ) } } -bool cItem::IsEnchantable(ENUM_ITEM_ID item) + + + + +bool cItem::IsEnchantable(short item) { - if(item >= 256 && item <= 259) + if ((item >= 256) && (item <= 259)) return true; - if(item >= 267 && item <= 279) + if ((item >= 267) && (item <= 279)) return true; - if(item >= 283 && item <= 286) + if ((item >= 283) && (item <= 286)) return true; - if(item >= 290 && item <= 294) + if ((item >= 290) && (item <= 294)) return true; - if(item >= 298 && item <= 317) + if ((item >= 298) && (item <= 317)) return true; - if(item >= 290 && item <= 294) + if ((item >= 290) && (item <= 294)) return true; - if(item == 346 || item == 359 || item == 261) + if ((item == 346) || (item == 359) || (item == 261)) return true; - return false; } + + + + |