Skip to content
This repository has been archived by the owner on Aug 29, 2022. It is now read-only.

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
notweuz committed Apr 29, 2022
2 parents 45f4eaa + 34b6757 commit 45d2309
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions source/FunkinLua.hx
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,8 @@ import Discord;
using StringTools;

class FunkinLua {
public static var Function_Stop:Dynamic = 1;
public static var Function_Continue:Dynamic = 0;
public static var Function_Stop:Dynamic = "Function_Stop";
public static var Function_Continue:Dynamic = "Function_Continue";

#if LUA_ALLOWED
public var lua:State = null;
Expand Down Expand Up @@ -92,8 +92,8 @@ class FunkinLua {
#end

// Lua shit
set('Function_Stop', Function_Stop);
set('Function_Continue', Function_Continue);
set('Function_Stop', "Function_Stop");
set('Function_Continue', "Function_Continue");
set('luaDebugMode', false);
set('luaDeprecatedWarnings', true);
set('inChartEditor', false);
Expand Down

0 comments on commit 45d2309

Please sign in to comment.