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
This commit is contained in:
Lord_Cambion 2026-04-18 10:30:29 +02:00
parent 383302eb2e
commit 22953367f4

View file

@ -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)