summaryrefslogtreecommitdiff
path: root/src/being/localplayer.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2017-07-12 19:32:30 +0300
committerAndrei Karas <akaras@inbox.ru>2017-07-12 21:12:24 +0300
commit03948f9bc58477100c61c11651290bee372dab5f (patch)
tree3714e87d59c3bca2ef02d1f405abba24f8bb9757 /src/being/localplayer.cpp
parentacedb80af76334b0e0acd877d3de0ab8ab46a576 (diff)
downloadplus-03948f9bc58477100c61c11651290bee372dab5f.tar.gz
plus-03948f9bc58477100c61c11651290bee372dab5f.tar.bz2
plus-03948f9bc58477100c61c11651290bee372dab5f.tar.xz
plus-03948f9bc58477100c61c11651290bee372dab5f.zip
Rename gm level into group id in localplayer.cpp
Diffstat (limited to 'src/being/localplayer.cpp')
-rw-r--r--src/being/localplayer.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/being/localplayer.cpp b/src/being/localplayer.cpp
index a9b76a10e..a5b5ce5fc 100644
--- a/src/being/localplayer.cpp
+++ b/src/being/localplayer.cpp
@@ -117,7 +117,7 @@ LocalPlayer::LocalPlayer(const BeingId id,
AttributeListener(),
PlayerDeathListener(),
StatListener(),
- mGMLevel(0),
+ mGroupId(0),
mMoveState(0),
mLastTargetX(0),
mLastTargetY(0),
@@ -416,11 +416,11 @@ void LocalPlayer::setAction(const BeingActionT &action,
#endif // USE_MUMBLE
}
-void LocalPlayer::setGMLevel(const int level)
+void LocalPlayer::setGroupId(const int id)
{
- mGMLevel = level;
+ mGroupId = id;
- if (level > 0)
+ if (id > 0)
{
setGM(true);
if (chatWindow != nullptr)