This commit is contained in:
IQuant 2024-06-29 18:19:08 +03:00
parent 0e1e170f80
commit f0c9212db1
2 changed files with 6 additions and 2 deletions

View file

@ -16,3 +16,6 @@ release:
noita:
cd /home/quant/.local/share/Steam/steamapps/common/Noita/ && NP_NOITA_ADDR=127.0.0.1:21252 wine noita.exe -gamemode 0
noita1:
cd /home/quant/.local/share/Steam/steamapps/common/Noita/ && wine noita.exe

View file

@ -103,8 +103,9 @@ function module.on_world_update_host()
end
function module.on_new_player_seen(new_playerdata)
module.set_max_health(module.max_health()+4)
module.set_health(module.health()+4)
local hp = 4
module.set_max_health(module.max_health()+hp)
module.set_health(module.health()+hp)
end
function module.health()