From df4977cca5f20c257a361d519b4a7da6df0db463 Mon Sep 17 00:00:00 2001 From: Lucy <44952533+Skyliegirl33@users.noreply.github.com> Date: Wed, 8 Mar 2023 19:18:12 +0100 Subject: [PATCH] Remove status tick logging --- src/world/Script/ScriptMgr.cpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/world/Script/ScriptMgr.cpp b/src/world/Script/ScriptMgr.cpp index d56a0626..e6d9c1c1 100644 --- a/src/world/Script/ScriptMgr.cpp +++ b/src/world/Script/ScriptMgr.cpp @@ -644,9 +644,6 @@ bool Sapphire::Scripting::ScriptMgr::onStatusTick( Entity::CharaPtr pChara, Sapp auto script = m_nativeScriptMgr->getScript< Sapphire::ScriptAPI::StatusEffectScript >( effect.getId() ); if( script ) { - if( pChara->isPlayer() ) - PlayerMgr::sendDebug( *pChara->getAsPlayer(), "Calling status tick for statusid#{0}", effect.getId() ); - script->onTick( *pChara ); return true; }