diff options
author | Vincent-Michael <Vincent_Michael@gmx.de> | 2013-06-18 17:23:47 +0200 |
---|---|---|
committer | Vincent-Michael <Vincent_Michael@gmx.de> | 2013-06-18 17:23:47 +0200 |
commit | 47ea7943e5dcd77305631bc453c52c31646be2ea (patch) | |
tree | 2172aba01787718b2856d5231f0799da9e989a34 /src | |
parent | 09eea66ee12a44295c0734cc55a1532440a11170 (diff) |
Core: Fix new warnings ...
Diffstat (limited to 'src')
-rw-r--r-- | src/server/game/Entities/Unit/Unit.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/server/game/Entities/Unit/Unit.cpp b/src/server/game/Entities/Unit/Unit.cpp index 18b4790f13a..d8f2422390d 100644 --- a/src/server/game/Entities/Unit/Unit.cpp +++ b/src/server/game/Entities/Unit/Unit.cpp @@ -17439,7 +17439,7 @@ bool Unit::SetCanFly(bool enable) return true; } -bool Unit::SetWaterWalking(bool enable, bool packetOnly /* = false */) +bool Unit::SetWaterWalking(bool enable, bool /*packetOnly = false */) { if (enable == HasUnitMovementFlag(MOVEMENTFLAG_WATERWALKING)) return false; @@ -17452,7 +17452,7 @@ bool Unit::SetWaterWalking(bool enable, bool packetOnly /* = false */) return true; } -bool Unit::SetFeatherFall(bool enable, bool packetOnly /* = false */) +bool Unit::SetFeatherFall(bool enable, bool /*packetOnly = false */) { if (enable == HasUnitMovementFlag(MOVEMENTFLAG_FALLING_SLOW)) return false; |