mirror of
https://github.com/Creators-of-Create/Create.git
synced 2024-11-10 20:45:10 +01:00
Merge branch 'mc1.14-v0.2.2b' into mc1.14-v0.2.3
This commit is contained in:
commit
83cfc097ae
@ -50,6 +50,8 @@ public class SequencedGearshiftTileEntity extends SplitShaftTileEntity {
|
||||
Instruction instruction = getInstruction(currentInstruction);
|
||||
if (instruction == null)
|
||||
return;
|
||||
if (getSpeed() == 0)
|
||||
run(-1);
|
||||
|
||||
// Update instruction time with regards to new speed
|
||||
float initialProgress = timer / (float) currentInstructionDuration;
|
||||
@ -68,6 +70,8 @@ public class SequencedGearshiftTileEntity extends SplitShaftTileEntity {
|
||||
world.setBlockState(pos, getBlockState().with(SequencedGearshiftBlock.STATE, 0), 3);
|
||||
return;
|
||||
}
|
||||
if (getSpeed() == 0)
|
||||
return;
|
||||
run(0);
|
||||
}
|
||||
|
||||
@ -122,6 +126,8 @@ public class SequencedGearshiftTileEntity extends SplitShaftTileEntity {
|
||||
}
|
||||
|
||||
public int getModifier() {
|
||||
if (currentInstruction >= instructions.size())
|
||||
return 0;
|
||||
return isIdle() ? 0 : instructions.get(currentInstruction).getSpeedModifier();
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user