Add BukkitPlayer constructor without plugin.

tbh I don't know why we even need to keep the plugin object around.
This commit is contained in:
wizjany
2019-03-30 17:32:10 -04:00
parent a80420d14b
commit 961da1b93f
2 changed files with 6 additions and 2 deletions

View File

@ -52,6 +52,10 @@ public class BukkitPlayer extends AbstractPlayerActor {
private Player player;
private WorldEditPlugin plugin;
public BukkitPlayer(Player player) {
this(WorldEditPlugin.getInstance(), player);
}
public BukkitPlayer(WorldEditPlugin plugin, Player player) {
this.plugin = plugin;
this.player = player;