Toggle skills should not broadcast MagicSkillUse.

This commit is contained in:
MobiusDev
2019-01-25 00:53:36 +00:00
parent 83b42bef7b
commit 916c986aef
12 changed files with 34 additions and 28 deletions

View File

@@ -220,7 +220,7 @@ public enum SkillOperateType
*/
public boolean isHidingMesseges()
{
return (this == A5) || (this == A6) || (this == TG) || (this == P);
return (this == P) || (this == A5) || (this == A6) || (this == TG);
}
/**
@@ -228,7 +228,7 @@ public enum SkillOperateType
*/
public boolean isNotBroadcastable()
{
return (this == A5) || (this == A6) || (this == AU) || (this == TG);
return (this == AU) || (this == A5) || (this == A6) || (this == TG) || (this == T);
}
/**