mirror of
https://github.com/GeyserMC/Geyser.git
synced 2024-08-14 23:57:35 +00:00
Merge remote-tracking branch 'upstream/master' into feature/blocky
This commit is contained in:
commit
4e88a7fb9a
1 changed files with 6 additions and 1 deletions
|
@ -1756,7 +1756,12 @@ public class GeyserSession implements GeyserConnection, GeyserCommandSource {
|
|||
abilities.add(Ability.NO_CLIP);
|
||||
}
|
||||
|
||||
// https://github.com/GeyserMC/Geyser/issues/3769 Setting Spectator mode ability layer
|
||||
if (spectator) {
|
||||
abilityLayer.setLayerType(AbilityLayer.Type.SPECTATOR);
|
||||
} else {
|
||||
abilityLayer.setLayerType(AbilityLayer.Type.BASE);
|
||||
}
|
||||
abilityLayer.setFlySpeed(flySpeed);
|
||||
// https://github.com/GeyserMC/Geyser/issues/3139 as of 1.19.10
|
||||
abilityLayer.setWalkSpeed(walkSpeed == 0f ? 0.01f : walkSpeed);
|
||||
|
|
Loading…
Reference in a new issue