From 747113d85542a21fc1338309337d7272133b8dd5 Mon Sep 17 00:00:00 2001 From: SushiTee Date: Fri, 1 Apr 2011 21:32:16 +0200 Subject: [PATCH] fixed moving if player collision is turned off --- src/game/gamecore.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/game/gamecore.cpp b/src/game/gamecore.cpp index c8669a8ee..e41e1fab8 100644 --- a/src/game/gamecore.cpp +++ b/src/game/gamecore.cpp @@ -391,10 +391,10 @@ void CCharacterCore::Move() return; } } - } - - m_Pos = NewPos; + } } + + m_Pos = NewPos; } void CCharacterCore::Write(CNetObj_CharacterCore *pObjCore)