mirror of
https://github.com/SunNetservers/MiniGames.git
synced 2025-06-25 10:44:43 +02:00
Changes the default vertical velocity to 3.92
This commit is contained in:
@ -104,7 +104,7 @@ public class DropperArena {
|
||||
this.arenaName = arenaName;
|
||||
this.spawnLocation = spawnLocation;
|
||||
this.exitLocation = null;
|
||||
this.playerVerticalVelocity = 1;
|
||||
this.playerVerticalVelocity = 3.92;
|
||||
this.playerHorizontalVelocity = 1;
|
||||
this.dropperArenaData = new DropperArenaData(this.arenaId, new DropperArenaRecordsRegistry(this.arenaId),
|
||||
new HashSet<>());
|
||||
|
@ -92,7 +92,7 @@ public class EditArenaCommand implements CommandExecutor {
|
||||
try {
|
||||
velocity = Double.parseDouble(velocityString);
|
||||
} catch (NumberFormatException exception) {
|
||||
velocity = 0.5;
|
||||
velocity = 3.92;
|
||||
}
|
||||
|
||||
// Require at least speed of 0.001, and at most 75 blocks/s
|
||||
|
Reference in New Issue
Block a user