Release v0.4.0

This commit is contained in:
IQuant 2024-05-20 19:22:14 +03:00
parent a283827e1c
commit 7912524498
4 changed files with 7 additions and 3 deletions

View file

@ -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.

View file

@ -1244,7 +1244,7 @@ checksum = "2bf50223579dc7cdcfb3bfcacf7069ff68243f8c363f62ffa99cf000a6b9c451"
[[package]]
name = "noita-proxy"
version = "0.3.0"
version = "0.4.0"
dependencies = [
"bitcode",
"clipboard",

View file

@ -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

View file

@ -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