From 31f9c570807c81437d16d8e151f78a80711cd0a0 Mon Sep 17 00:00:00 2001 From: Asada shinon Date: Tue, 19 May 2020 19:02:40 +0800 Subject: [PATCH] Quick Command ID Fix --- TShockAPI/Commands.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/TShockAPI/Commands.cs b/TShockAPI/Commands.cs index a3c9010c..925ebf29 100644 --- a/TShockAPI/Commands.cs +++ b/TShockAPI/Commands.cs @@ -2145,10 +2145,10 @@ namespace TShockAPI static Dictionary _worldModes = new Dictionary { - { "normal", 1 }, - { "expert", 2 }, - { "master", 3 }, - { "creative", 4 }, + { "normal", 0 }, + { "expert", 1 }, + { "master", 2 }, + { "creative", 3 }, }; private static void ChangeWorldMode(CommandArgs args)