Replace more getWorldTime with getTotalWorldTime

This commit is contained in:
Astoria 2023-01-12 14:17:23 -06:00
parent 5a117ea18a
commit a2ad18b4de
6 changed files with 7 additions and 7 deletions

View File

@ -97,7 +97,7 @@ public class GuiDisplay extends GuiContainer {
}
if (this.disp.cursMode == 2) {
long tm = super.mc.theWorld.getWorldTime();
long tm = super.mc.theWorld.getTotalWorldTime();
if ((tm >> 2 & 1L) > 0L) {
b ^= 128;
}

View File

@ -86,7 +86,7 @@ public abstract class BluePowerConductor {
}
public double getVoltage() {
long lt = this.getParent().getWorldObj().getWorldTime();
long lt = this.getParent().getWorldObj().getTotalWorldTime();
if ((lt & 65535L) == (long) this.lastTick) {
return this.Vcap;
} else {

View File

@ -10,7 +10,7 @@ public class EnvironLib {
return 0.5;
} else {
double nv = FractalLib.noise1D(
2576710L, (double) world.getWorldTime() * 1.0E-4, 0.6F, 5
2576710L, (double) world.getTotalWorldTime() * 1.0E-4, 0.6F, 5
);
nv = Math.max(0.0, 1.6 * (nv - 0.5) + 0.5);
if (world.getWorldInfo().getTerrainType() != WorldType.FLAT) {

View File

@ -20,7 +20,7 @@ public abstract class FluidBuffer {
}
public int getLevel() {
long lt = this.getParent().getWorldObj().getWorldTime();
long lt = this.getParent().getWorldObj().getTotalWorldTime();
if ((lt & 65535L) == (long) this.lastTick) {
return this.Level;
} else {

View File

@ -64,7 +64,7 @@ public abstract class TileExtended extends TileEntity {
}
public void scheduleTick(int time) {
long tn = super.worldObj.getWorldTime() + (long) time;
long tn = super.worldObj.getTotalWorldTime() + (long) time;
if (this.timeSched <= 0L || this.timeSched >= tn) {
this.timeSched = tn;
this.updateBlock();
@ -72,7 +72,7 @@ public abstract class TileExtended extends TileEntity {
}
public boolean isTickRunnable() {
return this.timeSched >= 0L && this.timeSched <= super.worldObj.getWorldTime();
return this.timeSched >= 0L && this.timeSched <= super.worldObj.getTotalWorldTime();
}
public boolean isTickScheduled() {

View File

@ -136,7 +136,7 @@ public class TilePipe extends TileCovered implements IPipeConnectable {
super.worldObj, this, new WorldCoord(this), this.ConCache
);
this.markDirty();
if ((super.worldObj.getWorldTime() & 16L) == 0L) {
if ((super.worldObj.getTotalWorldTime() & 16L) == 0L) {
this.hasChanged = true;
this.markForUpdate();
this.markDirty();