diff options
author | Bryson Steck <steck.bryson@gmail.com> | 2021-08-25 00:23:03 -0600 |
---|---|---|
committer | Bryson Steck <steck.bryson@gmail.com> | 2021-08-25 00:23:03 -0600 |
commit | 90bf30acfe869e17cf4209465f67cd70919c63b0 (patch) | |
tree | 099300dd7eaee5b30c8c0c7bee1ff3843150345e /src/net/brysonsteck/Resurrection/Resurrection.java | |
parent | 9764af18a7bd1e9c9564993bccf7826e565ec7c7 (diff) | |
download | resurrection-90bf30acfe869e17cf4209465f67cd70919c63b0.tar resurrection-90bf30acfe869e17cf4209465f67cd70919c63b0.tar.gz resurrection-90bf30acfe869e17cf4209465f67cd70919c63b0.tar.bz2 |
did some cleanup for transtioning out of beta
Diffstat (limited to 'src/net/brysonsteck/Resurrection/Resurrection.java')
-rw-r--r-- | src/net/brysonsteck/Resurrection/Resurrection.java | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/net/brysonsteck/Resurrection/Resurrection.java b/src/net/brysonsteck/Resurrection/Resurrection.java index 48ef593..e8aed53 100644 --- a/src/net/brysonsteck/Resurrection/Resurrection.java +++ b/src/net/brysonsteck/Resurrection/Resurrection.java @@ -1,9 +1,6 @@ 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.commands.*; import net.brysonsteck.Resurrection.player.PlayerListener; import net.brysonsteck.Resurrection.player.TimeCheck; import net.brysonsteck.Resurrection.startup.CheckForUpdate; @@ -105,6 +102,7 @@ public class Resurrection extends JavaPlugin implements Listener { this.getCommand("bug").setExecutor(new CommandBug()); this.getCommand("resurrect").setExecutor(new CommandResurrect()); this.getCommand("howlong").setExecutor(new CommandHowLong()); + this.getCommand("source").setExecutor(new CommandSource()); System.out.println("[Resurrection] ---------------------------------------------------------"); System.out.println("[Resurrection] Successfully Started!"); |