Made null cltstfunc case a no-op

This commit is contained in:
Collin Smith 2020-08-23 20:17:01 -07:00
parent 42378cf3be
commit b404e9eb40

View File

@ -65,6 +65,8 @@ public class SkillCastHandler extends PassiveSystem {
}
switch (event.cltstfunc) {
case 0:
break;
default:
log.warn("Unsupported cltstfunc({}) for {} casting {}", event.cltstfunc, event.entityId, event.skillId);
// TODO: default case will log an error when all valid cases are enumerated