Skip to content

Commit

Permalink
Don't let the rocket be launched again in the air
Browse files Browse the repository at this point in the history
  • Loading branch information
Majora320 authored and glowredman committed Apr 2, 2024
1 parent ae3be50 commit c7e38bb
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ public void setDead() {

public void igniteCheckingCooldown() {
if (!this.worldObj.isRemote && this.launchCooldown <= 0
&& this.launchPhase != EnumLaunchPhase.IGNITED.ordinal()) {
&& this.launchPhase == EnumLaunchPhase.UNIGNITED.ordinal()) {
this.setFrequency();
this.initiatePlanetsPreGen(this.chunkCoordX, this.chunkCoordZ);
this.ignite();
Expand Down

0 comments on commit c7e38bb

Please sign in to comment.