diff options
author | Andrei Karas <akaras@inbox.ru> | 2011-06-06 23:47:06 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2011-06-06 23:47:06 +0300 |
commit | 26aea9cab992944ae2db593cb948d51afa12846f (patch) | |
tree | 339eec03e83e359f7a7cc7c6cbf6142f9777e5bb /src | |
parent | 0c3770d8aec1b56ad704e88d6e6d510ddc4af9a1 (diff) | |
download | plus-26aea9cab992944ae2db593cb948d51afa12846f.tar.gz plus-26aea9cab992944ae2db593cb948d51afa12846f.tar.bz2 plus-26aea9cab992944ae2db593cb948d51afa12846f.tar.xz plus-26aea9cab992944ae2db593cb948d51afa12846f.zip |
Fix code style.
Diffstat (limited to 'src')
-rw-r--r-- | src/dropshortcut.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/dropshortcut.cpp b/src/dropshortcut.cpp index c31241409..ef67fca12 100644 --- a/src/dropshortcut.cpp +++ b/src/dropshortcut.cpp @@ -179,7 +179,8 @@ bool DropShortcut::dropItem(int cnt) } if (itemId > 0) { - Item *item = PlayerInfo::getInventory()->findItem(itemId, itemColor); + Item *item = PlayerInfo::getInventory()->findItem( + itemId, itemColor); if (item && item->getQuantity() > 0) { Net::getInventoryHandler()->dropItem(item, cnt); |