Time-of-day fix for Fabric (all versions) and Forge (1.13-1.16)

This commit is contained in:
Mike Primm 2021-12-29 19:33:37 -06:00
parent c48ed688b2
commit 7225edc1d6
9 changed files with 9 additions and 9 deletions

View file

@ -129,7 +129,7 @@ public class ForgeWorld extends DynmapWorld
public long getTime()
{
if(world != null)
return world.getWorld().getGameTime();
return world.getWorld().getDayTime();
else
return -1;
}