Merge remote-tracking branch 'origin/master'

This commit is contained in:
Anuken
2026-02-28 00:05:32 -05:00
2 changed files with 7 additions and 1 deletions

View File

@@ -2561,6 +2561,7 @@ public class UnitTypes{
lifetime = 60f;
buildingDamageMultiplier = 0.01f;
homingPower = 0.02f;
}};
}});
}};
@@ -2611,6 +2612,7 @@ public class UnitTypes{
lifetime = 60f;
buildingDamageMultiplier = 0.01f;
homingPower = 0.03f;
}};
}});
}};

View File

@@ -764,6 +764,8 @@ public class LogicBlock extends Block{
write.s(waitIndices.get(i));
write.f(waitValues.get(i));
}
write.f(accumulator);
}
@Override
@@ -823,6 +825,8 @@ public class LogicBlock extends Block{
waitIndices.add(index);
waitValues.add(value);
}
accumulator = read.f();
}
loadBlock = () -> updateCode(code, false, asm -> {
@@ -843,7 +847,7 @@ public class LogicBlock extends Block{
}
}
//wait times can only be applied once the instructions are loaded an exist
//wait times can only be applied once the instructions are loaded and exist
for(int i = 0; i < waitIndices.size; i++){
int waitIndex = waitIndices.get(i);
if(waitIndex >= 0 && waitIndex < asm.instructions.length && asm.instructions[waitIndex] instanceof WaitI wait){