diff --git a/core/src/mindustry/type/UnitType.java b/core/src/mindustry/type/UnitType.java index 908af3167f..ba5c81a6ef 100644 --- a/core/src/mindustry/type/UnitType.java +++ b/core/src/mindustry/type/UnitType.java @@ -890,7 +890,7 @@ public class UnitType extends UnlockableContent{ } for(Weapon weapon : weapons){ - if(!weapon.name.isEmpty()){ + if(!weapon.name.isEmpty() && (minfo.mod == null || weapon.name.startsWith(minfo.mod.name))){ //TODO makeNew isn't really necessary here is it makeOutline(PageType.main, packer, weapon.region, separateOutline, outlineColor, outlineRadius); }