Skip to content

Commit

Permalink
穿透特判喷灯
Browse files Browse the repository at this point in the history
  • Loading branch information
blac8 committed Jun 17, 2022
1 parent 6f94916 commit e3568e5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/src/mindustry/world/meta/StatValues.java
Original file line number Diff line number Diff line change
Expand Up @@ -455,7 +455,7 @@ public static <T extends UnlockableContent> StatValue ammo(ObjectMap<T, BulletTy
else if (type instanceof LaserBulletType || type instanceof ContinuousLaserBulletType || type instanceof ShrapnelBulletType) {
sep(bt, " [stat]电性穿透");
}
else if (!type.pierceBuilding) {
else if (!type.pierceBuilding && !(type instanceof ContinuousFlameBulletType)) {
sep(bt, " [stat]不能穿透建筑");
}
}
Expand Down

0 comments on commit e3568e5

Please sign in to comment.