diff options
-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; |