You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
676 B
Java
24 lines
676 B
Java
package com.zivilon.fakeplayer;
|
|
|
|
import org.bukkit.plugin.java.JavaPlugin;
|
|
|
|
import com.zivilon.fakeplayer.FakePlayer;
|
|
import com.zivilon.fakeplayer.commands.run_command;
|
|
import com.zivilon.fakeplayer.commands.area_command;
|
|
|
|
public class FakePlayerPlugin extends JavaPlugin {
|
|
|
|
@Override
|
|
public void onEnable() {
|
|
// Fired when the server enables the plugin
|
|
getLogger().info("FakePlayer enabled!");
|
|
this.getCommand("fakeplayer_run").setExecutor(new run_command());
|
|
this.getCommand("area_command").setExecutor(new area_command());
|
|
}
|
|
|
|
@Override
|
|
public void onDisable() {
|
|
getLogger().info("FakePlayer disabled!");
|
|
}
|
|
}
|