Merge pull request #925 from GeChallengeM/pvp-safespot-overlay-fix

safespot: stops the safespot overlay from rendering when it's not supposed to.
This commit is contained in:
Tyler Bochard
2019-07-07 17:34:22 -07:00
committed by GitHub

View File

@@ -119,15 +119,14 @@ public class SafeSpotPlugin extends Plugin
updateSafeSpots();
}
}
else if (tickCount > 0)
{
tickCount--;
}
else
{
safeSpotsRenderable = false;
}
if (tickCount > 0)
{
tickCount--;
safeSpotsRenderable = true;
}
}
/**