Fix jumps
This commit is contained in:
parent
ae45a57781
commit
5887757d5c
@ -93,8 +93,11 @@ namespace NeonTea.Quakeball.Players {
|
||||
Networking.Net.Singleton.Instance.UpdateLocalPlayer();
|
||||
}
|
||||
|
||||
if (WantsToJump && Player.Jump()) {
|
||||
Networking.Net.Singleton.Instance.LocalPlayerJump();
|
||||
if (WantsToJump) {
|
||||
bool Jumped = Player.Jump();
|
||||
if (Jumped && Networking.Net.Singleton.Instance != null) {
|
||||
Networking.Net.Singleton.Instance.LocalPlayerJump();
|
||||
}
|
||||
}
|
||||
WantsToJump = false;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user