add world size, space around worlds
This commit is contained in:
parent
629e8aadc5
commit
c2dc0e7247
22 changed files with 214 additions and 123 deletions
|
@ -1775,10 +1775,10 @@ public class Client implements IThreadListener {
|
|||
this.world.getDarkness()
|
||||
) + "\n" +
|
||||
String.format("Zeitfaktor: %dx, Schwerkraft: %.2f m/s²",
|
||||
Vars.timeFlow, this.world.gravity * 10.0
|
||||
Vars.timeFlow, this.world.getGravity(this.viewEntity) * 10.0
|
||||
) + "\n" +
|
||||
String.format("Letzte Zeitsynch.: + %d.%d s",
|
||||
ticked / 1000L, (ticked / 100L) % 10L
|
||||
String.format("Letzte Zeitsynch.: + %d.%d s, Größe: %d .. %d",
|
||||
ticked / 1000L, (ticked / 100L) % 10L, -this.world.dimension.getSize(), this.world.dimension.getSize()
|
||||
) + "\n" +
|
||||
"Startwert: " + this.world.dimension.getSeed() +
|
||||
(this.serverInfo != null ? "\n" + this.serverInfo : "")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue