From eb52b57d2a42d31d10a9cc7cfe85e2627d8ebcea Mon Sep 17 00:00:00 2001 From: VDH Date: Mon, 13 Apr 2026 10:09:15 +0700 Subject: [PATCH] fix bug --- Assets/Scripts/CECHostPlayer.Skill.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Assets/Scripts/CECHostPlayer.Skill.cs b/Assets/Scripts/CECHostPlayer.Skill.cs index 72d1d6458e..0b6b916a78 100644 --- a/Assets/Scripts/CECHostPlayer.Skill.cs +++ b/Assets/Scripts/CECHostPlayer.Skill.cs @@ -1633,7 +1633,7 @@ namespace BrewMonster { // Do we have the skill book ? int idBook = ElementSkill.GetRequiredBook((uint)idSkill, iLevel); - if (idBook != 0 /*&& m_pPack.FindItem(idBook) < 0*/) + if (idBook != 0 && m_pPack.FindItem(idBook) < 0) return 8; }