diff options
author | tycho <work.tycho@gmail.com> | 2015-05-28 12:05:41 +0200 |
---|---|---|
committer | tycho <work.tycho@gmail.com> | 2015-05-28 12:05:41 +0200 |
commit | e19693e529bf26e62a54f60c167d1b4870d7d44a (patch) | |
tree | 0b2cb131fa2f009723dd0ecd739ff911a369c763 /src/Items/ItemEmptyMap.h | |
parent | Fix warnings in cPath (diff) | |
parent | Merge pull request #2151 from SafwatHalaby/wolf (diff) | |
download | cuberite-e19693e529bf26e62a54f60c167d1b4870d7d44a.tar cuberite-e19693e529bf26e62a54f60c167d1b4870d7d44a.tar.gz cuberite-e19693e529bf26e62a54f60c167d1b4870d7d44a.tar.bz2 cuberite-e19693e529bf26e62a54f60c167d1b4870d7d44a.tar.lz cuberite-e19693e529bf26e62a54f60c167d1b4870d7d44a.tar.xz cuberite-e19693e529bf26e62a54f60c167d1b4870d7d44a.tar.zst cuberite-e19693e529bf26e62a54f60c167d1b4870d7d44a.zip |
Diffstat (limited to '')
-rw-r--r-- | src/Items/ItemEmptyMap.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Items/ItemEmptyMap.h b/src/Items/ItemEmptyMap.h index 6e944b4da..fba8c0a2c 100644 --- a/src/Items/ItemEmptyMap.h +++ b/src/Items/ItemEmptyMap.h @@ -60,7 +60,7 @@ public: return true; } - a_Player->GetInventory().AddItem(cItem(E_ITEM_MAP, 1, (short)(NewMap->GetID() & 0x7fff)), true, true); + a_Player->GetInventory().AddItem(cItem(E_ITEM_MAP, 1, (short)(NewMap->GetID() & 0x7fff))); return true; } |