From 7912524498c23c69042a059547778a3df9f62f7b Mon Sep 17 00:00:00 2001 From: IQuant Date: Mon, 20 May 2024 19:22:14 +0300 Subject: [PATCH] Release v0.4.0 --- README.md | 1 + noita-proxy/Cargo.lock | 2 +- noita-proxy/Cargo.toml | 2 +- quant.ew/init.lua | 5 ++++- 4 files changed, 7 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 3fc2ffee..89132f49 100644 --- a/README.md +++ b/README.md @@ -11,6 +11,7 @@ What is synced as of now: - Pixels of the grid world (this one is far from perfect, however) There is a video guide/showcase of the mod by Gudyni (in russian): https://www.youtube.com/watch?v=mqSKcDW-epg +Discord server: https://discord.gg/RVmAzBNE Special thanks to: - @EvaisaDev for allowing to use code from Noita Arena mod. diff --git a/noita-proxy/Cargo.lock b/noita-proxy/Cargo.lock index db68768d..e9898e9b 100644 --- a/noita-proxy/Cargo.lock +++ b/noita-proxy/Cargo.lock @@ -1244,7 +1244,7 @@ checksum = "2bf50223579dc7cdcfb3bfcacf7069ff68243f8c363f62ffa99cf000a6b9c451" [[package]] name = "noita-proxy" -version = "0.3.0" +version = "0.4.0" dependencies = [ "bitcode", "clipboard", diff --git a/noita-proxy/Cargo.toml b/noita-proxy/Cargo.toml index 85d4b2aa..1d55e410 100644 --- a/noita-proxy/Cargo.toml +++ b/noita-proxy/Cargo.toml @@ -3,7 +3,7 @@ members = ["tangled"] [package] name = "noita-proxy" -version = "0.3.0" +version = "0.4.0" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/quant.ew/init.lua b/quant.ew/init.lua index 1da8f15e..63cb9a25 100755 --- a/quant.ew/init.lua +++ b/quant.ew/init.lua @@ -225,7 +225,10 @@ local function on_world_pre_update_inner() if #death_data > 0 then net.send_enemy_death_data(death_data) end - else + end + end + if GameGetFrameNum() % 20 == 1 then + if not ctx.is_host then enemy_sync.client_cleanup() end end