From f430a11e34b0fbc7a3d304ad3771f97812f05f86 Mon Sep 17 00:00:00 2001 From: Mind Rapist Date: Thu, 25 Dec 2025 17:52:05 +0200 Subject: [PATCH] MR-3: Bunch of fixes --- src/game/char.cpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/game/char.cpp b/src/game/char.cpp index 241cf97..c129996 100644 --- a/src/game/char.cpp +++ b/src/game/char.cpp @@ -114,9 +114,6 @@ CHARACTER::CHARACTER() m_stateIdle.Set(this, &CHARACTER::BeginStateEmpty, &CHARACTER::StateIdle, &CHARACTER::EndStateEmpty); m_stateMove.Set(this, &CHARACTER::BeginStateEmpty, &CHARACTER::StateMove, &CHARACTER::EndStateEmpty); m_stateBattle.Set(this, &CHARACTER::BeginStateEmpty, &CHARACTER::StateBattle, &CHARACTER::EndStateEmpty); -#ifdef FIX_POS_SYNC - m_stateSyncing.Set(this, &CHARACTER::BeginStateEmpty, &CHARACTER::StateSyncing, &CHARACTER::EndStateEmpty); -#endif Initialize(); }