From d412de5cc28100fd10993d8be3dcc7bc627843b0 Mon Sep 17 00:00:00 2001 From: Madis Date: Sat, 8 Dec 2018 12:46:44 +0200 Subject: [PATCH] Improve quick commands Grammar fixes + 1.13 compatibility for gamemode commands --- .../mtbs3d/minecrift/settings/VRSettings.java | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/com/mtbs3d/minecrift/settings/VRSettings.java b/src/com/mtbs3d/minecrift/settings/VRSettings.java index 07b300e5..dceb7732 100644 --- a/src/com/mtbs3d/minecrift/settings/VRSettings.java +++ b/src/com/mtbs3d/minecrift/settings/VRSettings.java @@ -1826,18 +1826,18 @@ public static synchronized boolean renameProfile(String originalProfile, String public String[] getQuickCommandsDefaults(){ String[] out = new String[12]; - out[0] = "/gamemode 0"; - out[1] = "/gamemode 1"; + out[0] = "/gamemode survival"; + out[1] = "/gamemode creative"; out[2] = "/help"; out[3] = "/home"; out[4] = "/sethome"; out[5] = "/spawn"; - out[6] = "hi!"; - out[7] = "bye!"; - out[8] = "folow me!"; - out[9] = "take this!"; - out[10] = "thank you!"; - out[11] = "praise the sun!"; + out[6] = "Hi!"; + out[7] = "Bye!"; + out[8] = "Follow me!"; + out[9] = "Take this!"; + out[10] = "Thank you!"; + out[11] = "Praise the sun!"; return out;