Skip to content

Commit 17ffcfb

Browse files
committed
Fix update loop not running
1 parent fe0f08b commit 17ffcfb

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

lib/konko-mods.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -228,7 +228,7 @@ local function Default(self, modtable)
228228
for pn = 1, #POptions do
229229
default_mods[pn] = modtable
230230
end
231-
local res = self:Insert(std.MOD_START, 0, Tweens.instant, modtable)
231+
local res = self:Insert(std.BEAT, 0, Tweens.instant, modtable)
232232
return res
233233
end
234234
-- Define a new mod.

main/default.lua

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,9 @@ local modfile = subo(function()
105105
OnCommand = function(self)
106106
self:queuecommand('Ready')
107107
end,
108+
ReadyCommand = function(self)
109+
self:luaeffect('Update')
110+
end,
108111
Actors
109112
}
110113
end)

0 commit comments

Comments
 (0)