diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-07-30 12:25:16 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-07-30 12:25:16 +0300 |
commit | 1680d159ecbf75591d2dab1416ff8144c27d4de5 (patch) | |
tree | cd34ad27487036265f08d7aa63476c160280d899 /src/dropshortcut.cpp | |
parent | 9913b4b481ddcaf0fa8499f3554c85bb588be7f0 (diff) | |
download | plus-1680d159ecbf75591d2dab1416ff8144c27d4de5.tar.gz plus-1680d159ecbf75591d2dab1416ff8144c27d4de5.tar.bz2 plus-1680d159ecbf75591d2dab1416ff8144c27d4de5.tar.xz plus-1680d159ecbf75591d2dab1416ff8144c27d4de5.zip |
Rename player_node variable into localPlayer.
Diffstat (limited to 'src/dropshortcut.cpp')
-rw-r--r-- | src/dropshortcut.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/dropshortcut.cpp b/src/dropshortcut.cpp index 328d71adf..1972f037d 100644 --- a/src/dropshortcut.cpp +++ b/src/dropshortcut.cpp @@ -93,7 +93,7 @@ void DropShortcut::save() const void DropShortcut::dropFirst() const { - if (!player_node) + if (!localPlayer) return; if (!PacketLimiter::limitPackets(PACKET_DROP)) @@ -111,7 +111,7 @@ void DropShortcut::dropFirst() const if (item && item->getQuantity()) { const int cnt = settings.quickDropCounter; - if (player_node->isServerBuggy()) + if (localPlayer->isServerBuggy()) { PlayerInfo::dropItem(item, cnt, true); } @@ -126,10 +126,10 @@ void DropShortcut::dropFirst() const void DropShortcut::dropItems(const int cnt) { - if (!player_node) + if (!localPlayer) return; - if (player_node->isServerBuggy()) + if (localPlayer->isServerBuggy()) { dropItem(settings.quickDropCounter); return; |