Skip to content
Snippets Groups Projects
Commit 7b3141e4 authored by Eric Wykoff's avatar Eric Wykoff
Browse files

Paradox Modifier can not reduce duration below one turn

parent 4d35d8de
No related branches found
No related tags found
3 merge requests!249More fixes,!248More fixes,!247More fixes
......@@ -199,7 +199,7 @@ getExtensionModifier = function(self, t, value)
-- extension modifier rounds up
value = math.ceil(value * mod)
return value
return math.max(1, value)
end
-- Tunes paradox
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment