add a missing not in notplayer ai

This commit is contained in:
bgkillas 2024-08-11 09:50:14 -04:00
parent 554f14ca44
commit bf6f1d2b76
2 changed files with 5 additions and 1 deletions

View file

@ -41,6 +41,10 @@ In the Proxy window, click on "Create Lobby". Then, "Save lobby ID to clipboard"
After that, just start a new Noita game on everyone's PCs, and you should be in multiplayer mode :)
## Mods support
[The mods listed here](https://docs.google.com/spreadsheets/d/1nMdqzrLCav_diXbNPB9RgxPcCQzDPgXdEv-klKWJyS0) have been tested by the community, it is publically editable so please add any untested mod with your findings
## Thanks
Special thanks to:

View file

@ -143,7 +143,7 @@ local function choose_movement()
if last_did_hit and t_y < my_y + 40 then
local did_hit_1, _, _ = RaytracePlatforms(my_x, my_y, t_x, my_y)
local did_hit_2, _, _ = RaytracePlatforms(t_x, my_y, t_x, t_y)
if did_hit_1 and did_hit_2 then
if did_hit_1 and (not did_hit_2) then
get_close = true
end
end