mirror of
https://github.com/IntQuant/noita_entangled_worlds.git
synced 2025-10-19 07:03:16 +00:00
Release v0.4.0
This commit is contained in:
parent
a283827e1c
commit
7912524498
4 changed files with 7 additions and 3 deletions
|
@ -11,6 +11,7 @@ What is synced as of now:
|
||||||
- Pixels of the grid world (this one is far from perfect, however)
|
- 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
|
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:
|
Special thanks to:
|
||||||
- @EvaisaDev for allowing to use code from Noita Arena mod.
|
- @EvaisaDev for allowing to use code from Noita Arena mod.
|
||||||
|
|
2
noita-proxy/Cargo.lock
generated
2
noita-proxy/Cargo.lock
generated
|
@ -1244,7 +1244,7 @@ checksum = "2bf50223579dc7cdcfb3bfcacf7069ff68243f8c363f62ffa99cf000a6b9c451"
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "noita-proxy"
|
name = "noita-proxy"
|
||||||
version = "0.3.0"
|
version = "0.4.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"bitcode",
|
"bitcode",
|
||||||
"clipboard",
|
"clipboard",
|
||||||
|
|
|
@ -3,7 +3,7 @@ members = ["tangled"]
|
||||||
|
|
||||||
[package]
|
[package]
|
||||||
name = "noita-proxy"
|
name = "noita-proxy"
|
||||||
version = "0.3.0"
|
version = "0.4.0"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
|
|
||||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||||
|
|
|
@ -225,7 +225,10 @@ local function on_world_pre_update_inner()
|
||||||
if #death_data > 0 then
|
if #death_data > 0 then
|
||||||
net.send_enemy_death_data(death_data)
|
net.send_enemy_death_data(death_data)
|
||||||
end
|
end
|
||||||
else
|
end
|
||||||
|
end
|
||||||
|
if GameGetFrameNum() % 20 == 1 then
|
||||||
|
if not ctx.is_host then
|
||||||
enemy_sync.client_cleanup()
|
enemy_sync.client_cleanup()
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue