This commit is contained in:
Kade M 2021-05-03 20:51:50 -07:00
parent 69478bf5ae
commit 2bb9c10ba2

View File

@ -172,7 +172,7 @@ class ModchartState
// lua objects or what ever
if (luaSprites.get(id) == null)
{
if (Std.is(id, String))
if (Std.parseInt(id) == null)
return Reflect.getProperty(PlayState.instance,id);
return PlayState.PlayState.strumLineNotes.members[Std.parseInt(id)];
}