dkl9 commited on 2025-126 22:56:14
Showing 1 changed files, with 1 additions and 1 deletions.
| ... | ... |
@@ -37,7 +37,7 @@ local function update(prompt, revtime, revsucc, conf) |
| 37 | 37 |
local ARV = conf:get("AllowedRandomVariation") or 0.1
|
| 38 | 38 |
prompt.delay = math.floor(schedule(prompt, revtime, revsucc, conf) * ((1 - ARV) + 2 * ARV * math.random())) |
| 39 | 39 |
prompt.ease = prompt.ease + ({ -0.2, -0.15, 0, 0.15 })[2 * revsucc + 1]
|
| 40 |
- prompt.time = revtime |
|
| 40 |
+ prompt.time = math.floor(revtime) |
|
| 41 | 41 |
end |
| 42 | 42 |
|
| 43 | 43 |
--[[ |
| 44 | 44 |