Merge remote-tracking branch 'origin/master'
This commit is contained in:
@@ -2561,6 +2561,7 @@ public class UnitTypes{
|
|||||||
|
|
||||||
lifetime = 60f;
|
lifetime = 60f;
|
||||||
buildingDamageMultiplier = 0.01f;
|
buildingDamageMultiplier = 0.01f;
|
||||||
|
homingPower = 0.02f;
|
||||||
}};
|
}};
|
||||||
}});
|
}});
|
||||||
}};
|
}};
|
||||||
@@ -2611,6 +2612,7 @@ public class UnitTypes{
|
|||||||
|
|
||||||
lifetime = 60f;
|
lifetime = 60f;
|
||||||
buildingDamageMultiplier = 0.01f;
|
buildingDamageMultiplier = 0.01f;
|
||||||
|
homingPower = 0.03f;
|
||||||
}};
|
}};
|
||||||
}});
|
}});
|
||||||
}};
|
}};
|
||||||
|
|||||||
@@ -764,6 +764,8 @@ public class LogicBlock extends Block{
|
|||||||
write.s(waitIndices.get(i));
|
write.s(waitIndices.get(i));
|
||||||
write.f(waitValues.get(i));
|
write.f(waitValues.get(i));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
write.f(accumulator);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
@@ -823,6 +825,8 @@ public class LogicBlock extends Block{
|
|||||||
waitIndices.add(index);
|
waitIndices.add(index);
|
||||||
waitValues.add(value);
|
waitValues.add(value);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
accumulator = read.f();
|
||||||
}
|
}
|
||||||
|
|
||||||
loadBlock = () -> updateCode(code, false, asm -> {
|
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++){
|
for(int i = 0; i < waitIndices.size; i++){
|
||||||
int waitIndex = waitIndices.get(i);
|
int waitIndex = waitIndices.get(i);
|
||||||
if(waitIndex >= 0 && waitIndex < asm.instructions.length && asm.instructions[waitIndex] instanceof WaitI wait){
|
if(waitIndex >= 0 && waitIndex < asm.instructions.length && asm.instructions[waitIndex] instanceof WaitI wait){
|
||||||
|
|||||||
Reference in New Issue
Block a user