aboutsummaryrefslogtreecommitdiff
path: root/src/net/brysonsteck/Resurrection/Resurrection.java
diff options
context:
space:
mode:
authorBryson Steck <steck.bryson@gmail.com>2021-07-19 18:43:12 -0600
committerBryson Steck <steck.bryson@gmail.com>2021-07-19 18:43:12 -0600
commit5210b99c5fdd0d816ff3858468b1361702c8e1d7 (patch)
treee30fd7d4ddf31073e9ae12f57372428452bccbc9 /src/net/brysonsteck/Resurrection/Resurrection.java
parentd0df7cb76069c0022fea8d1e3f0938a585ffcda6 (diff)
downloadresurrection-5210b99c5fdd0d816ff3858468b1361702c8e1d7.tar
resurrection-5210b99c5fdd0d816ff3858468b1361702c8e1d7.tar.gz
resurrection-5210b99c5fdd0d816ff3858468b1361702c8e1d7.tar.bz2
added bug command
Diffstat (limited to 'src/net/brysonsteck/Resurrection/Resurrection.java')
-rw-r--r--src/net/brysonsteck/Resurrection/Resurrection.java2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/net/brysonsteck/Resurrection/Resurrection.java b/src/net/brysonsteck/Resurrection/Resurrection.java
index b3d9b99..9e54bc6 100644
--- a/src/net/brysonsteck/Resurrection/Resurrection.java
+++ b/src/net/brysonsteck/Resurrection/Resurrection.java
@@ -1,6 +1,7 @@
package net.brysonsteck.Resurrection;
import net.brysonsteck.Resurrection.commands.CommandAbout;
+import net.brysonsteck.Resurrection.commands.CommandBug;
import net.brysonsteck.Resurrection.commands.CommandHowLong;
import net.brysonsteck.Resurrection.commands.CommandResurrect;
import net.brysonsteck.Resurrection.player.PlayerListener;
@@ -93,6 +94,7 @@ public class Resurrection extends JavaPlugin implements Listener {
// register commands
this.getCommand("about").setExecutor(new CommandAbout(pluginInfo.getVersion(), outdated));
+ this.getCommand("bug").setExecutor(new CommandBug());
this.getCommand("resurrect").setExecutor(new CommandResurrect());
this.getCommand("howlong").setExecutor(new CommandHowLong());