diff --git a/README.md b/README.md index 2f8d42d9..5bae98ed 100644 --- a/README.md +++ b/README.md @@ -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: diff --git a/quant.ew/files/system/notplayer_ai/notplayer_ai.lua b/quant.ew/files/system/notplayer_ai/notplayer_ai.lua index d4be73a7..58fff676 100644 --- a/quant.ew/files/system/notplayer_ai/notplayer_ai.lua +++ b/quant.ew/files/system/notplayer_ai/notplayer_ai.lua @@ -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