3
0
Mirror von https://github.com/GeyserMC/Geyser.git synchronisiert 2024-10-01 23:50:11 +02:00

Fix: Opening inventory menus in spectator mode (#4407)

Revert to spectator_viewer instead of the native Bedrock spectator menu. While it looks uglier - e.g. it's showing health/hunger bars; it allows opening menus. It'll also be needed for entity spectating, since clicking on things isnt possible in bedrocks spectator mode
Dieser Commit ist enthalten in:
chris 2024-01-23 00:34:53 +01:00 committet von GitHub
Ursprung 87779dca88
Commit 7bcecdf403
Es konnte kein GPG-Schlüssel zu dieser Signatur gefunden werden
GPG-Schlüssel-ID: B5690EEEBB952194

Datei anzeigen

@ -270,7 +270,7 @@ public final class EntityUtils {
return switch (gamemode) {
case CREATIVE -> GameType.CREATIVE;
case ADVENTURE -> GameType.ADVENTURE;
case SPECTATOR -> GameType.SPECTATOR;
case SPECTATOR -> GameType.SURVIVAL_VIEWER;
default -> GameType.SURVIVAL;
};
}