aboutsummaryrefslogtreecommitdiff
path: root/src/game/Totem.cpp
diff options
context:
space:
mode:
authorSpp <none@none>2010-04-07 22:59:46 +0200
committerSpp <none@none>2010-04-07 22:59:46 +0200
commit49d05ba9aa1cd5c1f3ae96546283e6d03a037ff7 (patch)
treef7e6135573366a686c1f527e16a0a7d42a7877ff /src/game/Totem.cpp
parentd19e12708001fbef2308be0e8cb5375a2ac7af48 (diff)
Code style (game + scripts only):
"( " --> "(" " )" --> ")" --HG-- branch : trunk
Diffstat (limited to 'src/game/Totem.cpp')
-rw-r--r--src/game/Totem.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/game/Totem.cpp b/src/game/Totem.cpp
index 0f0b8160523..6d461ef291d 100644
--- a/src/game/Totem.cpp
+++ b/src/game/Totem.cpp
@@ -33,7 +33,7 @@ Totem::Totem(SummonPropertiesEntry const *properties, Unit *owner) : Minion(prop
m_type = TOTEM_PASSIVE;
}
-void Totem::Update( uint32 time )
+void Totem::Update(uint32 time)
{
if (!m_owner->isAlive() || !isAlive())
{
@@ -49,7 +49,7 @@ void Totem::Update( uint32 time )
else
m_duration -= time;
- Creature::Update( time );
+ Creature::Update(time);
}
void Totem::InitStats(uint32 duration)