setConditionParam(exhaust, CONDITION_PARAM_TICKS, (getConfigInfo('timeBetweenExActions') - 2000))
setConditionParam(exhaust, CONDITION_PARAM_TICKS, (getConfigInfo('timeBetweenExActions') - 1000))
timeBetweenActions = 300
timeBetweenExActions = 1000
in data/actions/liquid/potions.lua
change this line
toLUA:setConditionParam(exhaust, CONDITION_PARAM_TICKS, (getConfigInfo('timeBetweenExActions') - 2000))
LUA:setConditionParam(exhaust, CONDITION_PARAM_TICKS, (getConfigInfo('timeBetweenExActions') - 1000))
AND IN CONFIG.LUA
LUA:timeBetweenActions = 300 timeBetweenExActions = 1000
Here you can change to your liking
setConditionParam(exhaust, CONDITION_PARAM_TICKS, (getConfigInfo('timeBetweenExActions') - 1000))
getConfigInfo('timeBetweenExActions') is usually 1000, so you get 900 ms exhaust (compensates for latency)
swapping 100 for 1000 gives you 0 ms (1000-1000), but it's better to remove the condition completely![]()