fixed RepairTower (#10489)

* fixed RepairTower

* oops
This commit is contained in:
KochiyaUenehaaa 2025-02-10 23:46:24 +08:00 committed by GitHub
parent 90dc291b66
commit 73bde0d3af
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -68,7 +68,7 @@ public class RepairTower extends Block{
if(efficiency > 0){
for(var target : targets){
if(target.damaged()){
target.heal(healAmount * efficiency);
target.heal(healAmount * edelta());
any = true;
}
}