Do not show falloff range if it's too low (disintegrators fetch base value of 1 and show it)
This commit is contained in:
@@ -60,7 +60,7 @@ class MaxRange(ViewColumn):
|
||||
|
||||
maxRange = stuff.maxRange if hasattr(stuff, "maxRange") else stuff.getModifiedItemAttr("maxRange", None)
|
||||
falloff = stuff.falloff
|
||||
if falloff:
|
||||
if falloff and falloff >= 5:
|
||||
falloff = "+%sm" % formatAmount(falloff, 3, 0, 3)
|
||||
else:
|
||||
falloff = ""
|
||||
|
||||
Reference in New Issue
Block a user