From 2c29ac863970bf90eea06ff4332d7ee433ef702a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christer=20War=C3=A9n?= Date: Sat, 24 Oct 2020 06:42:03 +0300 Subject: [PATCH] Update --- mirricraft-gamemode.sk | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/mirricraft-gamemode.sk b/mirricraft-gamemode.sk index cdafeb2..2aa12ca 100644 --- a/mirricraft-gamemode.sk +++ b/mirricraft-gamemode.sk @@ -2,24 +2,24 @@ command /gamemode []: description: Game Mode aliases: /gm - executable by: players + executable by: console and players trigger: if arg-1 is "0" or "s" or "survival": if player has the permission "mirricraft.gamemode.survival": set gamemode of player to Survival stop stop - elseif arg-1 is "1" or "c" or "creative": + else if arg-1 is "1" or "c" or "creative": if player has the permission "mirricraft.gamemode.creative": set gamemode of player to Creative stop stop - elseif arg-1 is "2" or "a" or "adventure": + else if arg-1 is "2" or "a" or "adventure": if player has the permission "mirricraft.gamemode.adventure": set gamemode of player to Adventure stop stop - elseif arg-1 is "3" or "sp" or "spectator": + else if arg-1 is "3" or "sp" or "spectator": if player has the permission "mirricraft.gamemode.spectator": set gamemode of player to Spectator stop