Run spotlessApply

This commit is contained in:
KingRainbow44
2023-05-02 23:21:17 -04:00
Unverified
parent b877ca9fce
commit d67e2d0c5e
1412 changed files with 1307454 additions and 1212597 deletions
@@ -14,14 +14,11 @@ public final class ExecIncQuestVar extends TalkExecHandler {
public void execute(Player player, TalkConfigData talkData, TalkExecParam execParam) {
if (execParam.getParam().length < 3) return;
GameMainQuest mainQuest = player.getQuestManager().getMainQuestById(
Integer.parseInt(execParam.getParam()[2])
);
GameMainQuest mainQuest =
player.getQuestManager().getMainQuestById(Integer.parseInt(execParam.getParam()[2]));
if (mainQuest == null) return;
mainQuest.incQuestVar(
Integer.parseInt(execParam.getParam()[0]),
Integer.parseInt(execParam.getParam()[1])
);
Integer.parseInt(execParam.getParam()[0]), Integer.parseInt(execParam.getParam()[1]));
}
}