Skip to content

Commit fcffa03

Browse files
committed
inverted remove on unload condition 😪
Took 3 minutes
1 parent cb73411 commit fcffa03

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/main/java/com/github/x3r/mekanism_turrets/common/entity/LaserEntity.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ public void tick() {
4444
this.discard();
4545
return;
4646
}
47-
if(level().isLoaded(this.blockPosition())) {
47+
if(!level().isLoaded(this.blockPosition())) {
4848
this.discard();
4949
return;
5050
}

0 commit comments

Comments
 (0)