mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-09 20:30:28 +01:00
14 lines
556 B
Diff
14 lines
556 B
Diff
--- /home/matt/mc-dev-private//net/minecraft/server/PlayerAbilities.java 2015-02-26 22:40:22.987608135 +0000
|
|
+++ src/main/java/net/minecraft/server/PlayerAbilities.java 2015-02-26 22:40:22.987608135 +0000
|
|
@@ -7,8 +7,8 @@
|
|
public boolean canFly;
|
|
public boolean canInstantlyBuild;
|
|
public boolean mayBuild = true;
|
|
- private float flySpeed = 0.05F;
|
|
- private float walkSpeed = 0.1F;
|
|
+ public float flySpeed = 0.05F; // CraftBukkit - public
|
|
+ public float walkSpeed = 0.1F; // CraftBukkit - public
|
|
|
|
public PlayerAbilities() {}
|
|
|