summaryrefslogtreecommitdiffstats
path: root/src/Scoreboard.cpp
diff options
context:
space:
mode:
authorAlexander Harkness <bearbin@gmail.com>2014-02-05 19:24:08 +0100
committerAlexander Harkness <bearbin@gmail.com>2014-02-05 19:24:08 +0100
commitb9aa0420a3f4d8374960860d2e570d724076c9e5 (patch)
treeb67e4e427ef14174c3dd588f2bf12311da38c995 /src/Scoreboard.cpp
parentImproved the signedness conversion. (diff)
parentFixed most of the reordering warnings (diff)
downloadcuberite-b9aa0420a3f4d8374960860d2e570d724076c9e5.tar
cuberite-b9aa0420a3f4d8374960860d2e570d724076c9e5.tar.gz
cuberite-b9aa0420a3f4d8374960860d2e570d724076c9e5.tar.bz2
cuberite-b9aa0420a3f4d8374960860d2e570d724076c9e5.tar.lz
cuberite-b9aa0420a3f4d8374960860d2e570d724076c9e5.tar.xz
cuberite-b9aa0420a3f4d8374960860d2e570d724076c9e5.tar.zst
cuberite-b9aa0420a3f4d8374960860d2e570d724076c9e5.zip
Diffstat (limited to 'src/Scoreboard.cpp')
-rw-r--r--src/Scoreboard.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Scoreboard.cpp b/src/Scoreboard.cpp
index b2edd613b..61ecac5b7 100644
--- a/src/Scoreboard.cpp
+++ b/src/Scoreboard.cpp
@@ -197,8 +197,8 @@ cTeam::cTeam(const AString & a_Name, const AString & a_DisplayName,
const AString & a_Prefix, const AString & a_Suffix)
: m_AllowsFriendlyFire(true)
, m_CanSeeFriendlyInvisible(false)
- , m_Name(a_Name)
, m_DisplayName(a_DisplayName)
+ , m_Name(a_Name)
, m_Prefix(a_Prefix)
, m_Suffix(a_Suffix)
{}