From 4141a9df45a69a0ddc0114f1c450e1b1f3786f2e Mon Sep 17 00:00:00 2001 From: DarkPhoenix Date: Thu, 24 May 2018 14:32:35 +0300 Subject: [PATCH] Do not show falloff range if it's too low (disintegrators fetch base value of 1 and show it) --- gui/builtinViewColumns/maxRange.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gui/builtinViewColumns/maxRange.py b/gui/builtinViewColumns/maxRange.py index ef420c344..7fcd6cd44 100644 --- a/gui/builtinViewColumns/maxRange.py +++ b/gui/builtinViewColumns/maxRange.py @@ -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 = ""