Skip to content

Commit

Permalink
No ceiling scan in nether
Browse files Browse the repository at this point in the history
  • Loading branch information
OreCruncher committed Nov 2, 2019
1 parent 832bb5f commit 2406390
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -78,7 +78,7 @@ public final class CeilingCoverage implements ITickable {
@Override
public void update() {
if (EnvironState.getTickCounter() % SURVEY_INTERVAL == 0) {
if (EnvironState.getDimensionInfo().alwaysOutside()) {
if (EnvironState.getDimensionId() == -1 || EnvironState.getDimensionInfo().alwaysOutside()) {
this.ceilingCoverageRatio = 0F;
this.reallyInside = false;
} else {
Expand Down

0 comments on commit 2406390

Please sign in to comment.