Skip to content

Commit

Permalink
like the dumbass i am
Browse files Browse the repository at this point in the history
  • Loading branch information
charlesisfeline committed Feb 12, 2024
1 parent 2737879 commit 368c31e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion source/psychlua/FunkinLua.hx
Original file line number Diff line number Diff line change
Expand Up @@ -690,7 +690,7 @@ class FunkinLua {
});
Lua_helper.add_callback(lua, "readLines", function(targetFile:String = null, modOnly:Bool = false) {
var text = Paths.getTextFromFile(targetFile, modOnly);
return text == null ? null : CoolUtil.listFromString(text, false);
return text == null ? null : CoolUtil.listFromString(text);
});
Lua_helper.add_callback(lua, "writeFile", function(targetFile:String = null, data:String = "", append:Bool = false) {
#if (MODS_ALLOWED && sys)
Expand Down
2 changes: 2 additions & 0 deletions source/psychlua/ReflectionFunctions.hx
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
package psychlua;

import Type.ValueType;
import haxe.Constraints;
import substates.GameOverSubstate;
Expand Down

0 comments on commit 368c31e

Please sign in to comment.