forked from SteamWar/SteamWar
BauSystem/BauSystem_Main/src/de/steamwar/bausystem/features/util/SpeedCommand.java aktualisiert
This commit is contained in:
@@ -39,12 +39,12 @@ public class SpeedCommand extends SWCommand {
|
||||
|
||||
@Register
|
||||
public void speedCommand(Player p, float speed) {
|
||||
speed = speed / 10F;
|
||||
if (speed < -1F) {
|
||||
BauSystem.MESSAGE.send("SPEED_TOO_SMALL", p, speed * 10);
|
||||
} else if (speed > 1F) {
|
||||
BauSystem.MESSAGE.send("SPEED_TOO_HIGH", p, speed * 10);
|
||||
if (speed < -10F) {
|
||||
BauSystem.MESSAGE.send("SPEED_TOO_SMALL", p, speed);
|
||||
} else if (speed > 10F) {
|
||||
BauSystem.MESSAGE.send("SPEED_TOO_HIGH", p, speed);
|
||||
} else {
|
||||
speed = speed / 10F;
|
||||
p.setFlySpeed(speed);
|
||||
p.setWalkSpeed(Math.min(speed + 0.1F, 1F));
|
||||
BauSystem.MESSAGE.send("SPEED_CURRENT", p, (p.getFlySpeed() * 10F));
|
||||
|
||||
Reference in New Issue
Block a user