From 22953367f4142a57ed1b9579c7223313b6dff28c Mon Sep 17 00:00:00 2001 From: Lord_Cambion Date: Sat, 18 Apr 2026 10:30:29 +0200 Subject: [PATCH] fix: Adventure Mode to Spectator in the previous commit i implemented few things for the armorstand using ida and i forgot to change the gametype for spectator --- Minecraft.World/LevelSettings.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Minecraft.World/LevelSettings.cpp b/Minecraft.World/LevelSettings.cpp index 3e3c49f0..bf9b6a56 100644 --- a/Minecraft.World/LevelSettings.cpp +++ b/Minecraft.World/LevelSettings.cpp @@ -15,7 +15,7 @@ void GameType::staticCtor() SURVIVAL = new GameType(0, L"survival"); CREATIVE = new GameType(1, L"creative"); ADVENTURE = new GameType(2, L"adventure"); - ADVENTURE = new GameType(3, L"spectator"); + SPECTATOR = new GameType(3, L"spectator"); } GameType::GameType(int id, const wstring &name)