From c4e6ecaea123f3c04dbf0d43fa59f4fea709fbc8 Mon Sep 17 00:00:00 2001 From: Business Goose Date: Thu, 31 Mar 2022 03:28:28 +0100 Subject: [PATCH] Gotta love git merge. --- .../java/me/StevenLawson/TotalFreedomMod/commands/Commands.java | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main/java/me/StevenLawson/TotalFreedomMod/commands/Commands.java b/src/main/java/me/StevenLawson/TotalFreedomMod/commands/Commands.java index 2d2a6bc..4a36c79 100644 --- a/src/main/java/me/StevenLawson/TotalFreedomMod/commands/Commands.java +++ b/src/main/java/me/StevenLawson/TotalFreedomMod/commands/Commands.java @@ -108,5 +108,6 @@ public class Commands { plugin.getCommand("wipeuserdata").setExecutor(new Command_wipeuserdata()); plugin.getCommand("whoami").setExecutor(new Command_whoami()); plugin.getCommand("resetplayer").setExecutor(new Command_resetplayer()); + plugin.getCommand("vanish").setExecutor(new Command_vanish()); } }