aboutsummaryrefslogtreecommitdiff
path: root/src/game/GameObject.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/game/GameObject.h')
-rw-r--r--src/game/GameObject.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game/GameObject.h b/src/game/GameObject.h
index 1f914a39006..8b8673a5d61 100644
--- a/src/game/GameObject.h
+++ b/src/game/GameObject.h
@@ -643,7 +643,7 @@ class GameObject : public WorldObject, public GridObject<GameObject>
time_t GetRespawnTimeEx() const
{
time_t now = time(NULL);
- if(m_respawnTime > now)
+ if (m_respawnTime > now)
return m_respawnTime;
else
return now;