Skip to content

Commit

Permalink
fix function returning wrong value
Browse files Browse the repository at this point in the history
  • Loading branch information
Vortex2Oblivion committed Jan 12, 2025
1 parent c1aace7 commit 38f48aa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/modding/scripts/languages/LuaScript.hx
Original file line number Diff line number Diff line change
Expand Up @@ -1218,7 +1218,7 @@ class LuaScript extends Script {
});

setFunction("getRenderedNoteType", function(id:Int) {
return PlayState.instance.notes.members[id].noteData;
return PlayState.instance.notes.members[id].arrow_Type;
});

setFunction("getRenderedNoteData", function(id:Int) {
Expand Down

0 comments on commit 38f48aa

Please sign in to comment.