mirror of
https://github.com/GeyserMC/Geyser.git
synced 2024-08-14 23:57:35 +00: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
This commit is contained in:
parent
87779dca88
commit
7bcecdf403
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue