Fixed mistake with quest objectives

This commit is contained in:
ASangarin 2019-09-03 00:14:08 +01:00
parent 4e23aec373
commit 2709dbc138

View File

@ -82,10 +82,10 @@ public class DefaultMMOLoader implements MMOLoader {
if (config.getKey().equals("goto"))
return new GoToObjective(section, config);
if (config.getKey().equals("mine"))
if (config.getKey().equals("mineblock"))
return new MineBlockObjective(section, config);
if (config.getKey().equals("kill"))
if (config.getKey().equals("killmob"))
return new KillMobObjective(section, config);
if (config.getKey().equals("clickon"))