diff --git a/.idea/modules.xml b/.idea/modules.xml index b52058de..c32a91ea 100644 --- a/.idea/modules.xml +++ b/.idea/modules.xml @@ -3,7 +3,6 @@ - \ No newline at end of file diff --git a/gen/visualgen.py b/gen/visualgen.py index e2b3802f..51c521a7 100644 --- a/gen/visualgen.py +++ b/gen/visualgen.py @@ -16,8 +16,7 @@ class MarkerSmoke(unittype.StaticType): category = "Effects" name = "big_smoke" shape_name = 5 - effect_transparency = 0.1 - rate = 100 + rate = 0.1 class Smoke(unittype.StaticType): @@ -25,26 +24,23 @@ class Smoke(unittype.StaticType): category = "Effects" name = "big_smoke" shape_name = 2 - effect_transparency = 1 - rate = 100 + rate = 1 class BigSmoke(unittype.StaticType): id = "big_smoke" category = "Effects" name = "big_smoke" - effect_transparency = 1 shape_name = 3 - rate = 100 + rate = 1 class MassiveSmoke(unittype.StaticType): id = "big_smoke" category = "Effects" name = "big_smoke" - effect_transparency = 1 shape_name = 4 - rate = 100 + rate = 1 class Outpost(unittype.StaticType): @@ -59,7 +55,7 @@ def __monkey_static_dict(self: Static): d = __original_static_dict(self) if self.type == "big_smoke": d["effectPreset"] = self.shape_name - d["effectTransparency"] = self.effect_transparency + d["effectTransparency"] = self.rate return d