2 bug fixes

- Fix votifier being non-existent breaking shop
- Fix plugin breaking error
This commit is contained in:
Seth
2020-07-06 22:21:35 -07:00
parent 3fd7147fc2
commit c333a6ee39
6 changed files with 68 additions and 42 deletions

View File

@ -42,6 +42,7 @@ import me.totalfreedom.totalfreedommod.player.PlayerList;
import me.totalfreedom.totalfreedommod.punishments.PunishmentList;
import me.totalfreedom.totalfreedommod.rank.RankManager;
import me.totalfreedom.totalfreedommod.shop.Shop;
import me.totalfreedom.totalfreedommod.shop.Votifier;
import me.totalfreedom.totalfreedommod.sql.SQLite;
import me.totalfreedom.totalfreedommod.util.FLog;
import me.totalfreedom.totalfreedommod.util.FUtil;
@ -98,6 +99,7 @@ public class TotalFreedomMod extends JavaPlugin
public AntiSpam as;
public PlayerList pl;
public Shop sh;
public Votifier vo;
public SQLite sql;
public Announcer an;
public ChatManager cm;
@ -224,6 +226,7 @@ public class TotalFreedomMod extends JavaPlugin
wr = new WorldRestrictions();
pl = new PlayerList();
sh = new Shop();
vo = new Votifier();
an = new Announcer();
cm = new ChatManager();
dc = new Discord();