mirror of
https://github.com/Sollace/Unicopia.git
synced 2025-02-17 10:24:23 +01:00
Fixed non-living entities counting towards the terror from the skies advancement. Closes #93
This commit is contained in:
parent
5f1e6c24f0
commit
844dfcd68c
1 changed files with 2 additions and 1 deletions
|
@ -90,8 +90,9 @@ public class BatEeeeAbility implements Ability<Hit> {
|
|||
e.addVelocity(0, 0.1, 0);
|
||||
}
|
||||
Living.updateVelocity(e);
|
||||
return 1;
|
||||
}
|
||||
return 1;
|
||||
return 0;
|
||||
}).sum();
|
||||
|
||||
if (total >= 20) {
|
||||
|
|
Loading…
Reference in a new issue