]> git.localhorst.tv Git - l2e.git/commitdiff
fixed order of initializer list of battle::Stats
authorDaniel Karbach <daniel.karbach@localhorst.tv>
Sun, 26 Aug 2012 18:48:57 +0000 (20:48 +0200)
committerDaniel Karbach <daniel.karbach@localhorst.tv>
Sun, 26 Aug 2012 18:48:57 +0000 (20:48 +0200)
src/battle/Stats.cpp

index ba15898f037bd8fe63ff0654dc04aed7a4ec94f2..c35a14ad339e54c34490e2771a94c451df4d7082 100644 (file)
@@ -15,8 +15,8 @@ Stats::Stats()
 , strength(0)
 , agility(0)
 , intelligence(0)
-, gut(0)
-, magicResistance(0) {
+, magicResistance(0)
+, gut(0) {
 
 }
 
@@ -26,8 +26,8 @@ Stats::Stats(Uint16 attack, Uint16 defense, Uint16 strength, Uint16 agility, Uin
 , strength(strength)
 , agility(agility)
 , intelligence(intelligence)
-, gut(gut)
-, magicResistance(magicResistance) {
+, magicResistance(magicResistance)
+, gut(gut) {
 
 }