Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Some lua improvements #15088

Open
wants to merge 25 commits into
base: experimental
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Merge branch 'experimental' into endgame
  • Loading branch information
LarryFrosty committed Aug 11, 2024
commit c7b010e5ffafd8eebcbf9d2811f14067564554e7
2 changes: 1 addition & 1 deletion source/psychlua/FunkinLua.hx
Original file line number Diff line number Diff line change
Expand Up @@ -724,7 +724,7 @@ class FunkinLua {
Lua_helper.add_callback(lua, "getMisses", function() return game.songMisses);
Lua_helper.add_callback(lua, "getHits", function() return game.songHits);

Lua_helper.add_callback(lua, "setHealth", function(value:Float = 0) return game.health = value);
Lua_helper.add_callback(lua, "setHealth", function(value:Float = 1) return game.health = value);
Lua_helper.add_callback(lua, "addHealth", function(value:Float = 0) game.health += value);
Lua_helper.add_callback(lua, "getHealth", function() return game.health);

Expand Down
You are viewing a condensed version of this merge commit. You can view the full changes here.