Fixed PK mode bugs, fixed logout cancellation from using skills

This commit is contained in:
Mind Rapist
2025-12-27 10:17:04 +02:00
parent 7a69f13439
commit 11ef2f5780
3 changed files with 33 additions and 77 deletions

View File

@@ -1659,6 +1659,14 @@ void CHARACTER::EnterCombat()
if (!IsPosition(POS_FIGHTING))
SetPosition(POS_FIGHTING);
// MR-3: Cancel logout on use skill
if (IsCmdCountdownActive())
{
ChatPacket(CHAT_TYPE_INFO, LC_TEXT("전투가 시작 되어 취소 되었습니다."));
CancelCmdCountdown();
}
// MR-3: -- END OF -- Cancel logout on use skill
SetNextStatePulse(1);
}
// tw1x1: end