diff --git a/VERSION b/VERSION index e75da3e..00355e2 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -2.3.6 +2.3.7 diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index 722469b..e942411 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -1,5 +1,8 @@ # Changelog +**2.3.7** +* Don't Append Hyphens To New World Name, Only Folder Names + **2.3.6** * Fix `Invert Y-axis` Option Name * Improve Touch GUI Inventory In Non-Touch GUI diff --git a/images/start.png b/images/start.png index 96f07c1..b971d82 100644 Binary files a/images/start.png and b/images/start.png differ diff --git a/mods/src/game-mode/ui.cpp b/mods/src/game-mode/ui.cpp index b7462a6..e213d6d 100644 --- a/mods/src/game-mode/ui.cpp +++ b/mods/src/game-mode/ui.cpp @@ -219,7 +219,7 @@ static unsigned char *get_minecraft_from_screen(unsigned char *screen) { } // Create World -static void create_world(unsigned char *host_screen, std::string world_name) { +static void create_world(unsigned char *host_screen, std::string folder_name) { // Get Minecraft unsigned char *minecraft = get_minecraft_from_screen(host_screen); @@ -229,7 +229,8 @@ static void create_world(unsigned char *host_screen, std::string world_name) { settings.seed = create_world_state.seed; // Create World - (*Minecraft_selectLevel)(minecraft, world_name, world_name, settings); + std::string world_name = (char *) create_world_state.name; + (*Minecraft_selectLevel)(minecraft, folder_name, world_name, settings); // Multiplayer (*Minecraft_hostMultiplayer)(minecraft, 19132);