Check removed auto skill shortcuts.

This commit is contained in:
MobiusDevelopment 2020-01-02 02:39:07 +00:00
parent 4382ea4ee6
commit 219853c8f1
2 changed files with 6 additions and 2 deletions

View File

@ -58,7 +58,9 @@ public class RequestShortCutDel implements IClientIncomingPacket
if (_slot > 263) if (_slot > 263)
{ {
player.removeAutoSupplyItem(_id); player.removeAutoSupplyItem(_id);
player.removeAutoPotionItem(_id); }
else
{
player.removeAutoSkill(_id); player.removeAutoSkill(_id);
} }
} }

View File

@ -58,7 +58,9 @@ public class RequestShortCutDel implements IClientIncomingPacket
if (_slot > 263) if (_slot > 263)
{ {
player.removeAutoSupplyItem(_id); player.removeAutoSupplyItem(_id);
player.removeAutoPotionItem(_id); }
else
{
player.removeAutoSkill(_id); player.removeAutoSkill(_id);
} }
} }