mirror of
https://github.com/IntQuant/noita_entangled_worlds.git
synced 2025-10-19 07:03:16 +00:00
Fix enemy projectile sync being broken.
This commit is contained in:
parent
a8fc1d6027
commit
0983cb743a
4 changed files with 5 additions and 5 deletions
2
noita-proxy/Cargo.lock
generated
2
noita-proxy/Cargo.lock
generated
|
@ -1922,7 +1922,7 @@ checksum = "2bf50223579dc7cdcfb3bfcacf7069ff68243f8c363f62ffa99cf000a6b9c451"
|
|||
|
||||
[[package]]
|
||||
name = "noita-proxy"
|
||||
version = "0.11.3"
|
||||
version = "0.12.0"
|
||||
dependencies = [
|
||||
"bincode",
|
||||
"bitcode",
|
||||
|
|
|
@ -4,7 +4,7 @@ members = ["tangled"]
|
|||
[package]
|
||||
name = "noita-proxy"
|
||||
description = "Noita Entangled Worlds companion app."
|
||||
version = "0.11.3"
|
||||
version = "0.12.0"
|
||||
edition = "2021"
|
||||
|
||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||
|
|
|
@ -153,7 +153,7 @@ It should be detected automatically as long as you use steam version of the game
|
|||
|
||||
title = input("Release title: ")
|
||||
|
||||
subprocess.call(["gh", "release", "create", tag, "--title", f"{tag} - {title}", "-F", notes_path, "--draft", "./target/noita-proxy-linux.zip", "./target/noita-proxy-win.zip", "./target/quant.ew.zip"])
|
||||
subprocess.call(["gh", "release", "create", tag, "--title", f"{tag} - {title}", "-F", notes_path, "./target/noita-proxy-linux.zip", "./target/noita-proxy-win.zip", "./target/quant.ew.zip"])
|
||||
|
||||
if __name__ == "__main__":
|
||||
main()
|
||||
|
|
|
@ -70,9 +70,9 @@ function module.on_projectile_fired(shooter_id, projectile_id, initial_rng, posi
|
|||
if entity_that_shot == 0 then
|
||||
rpc.replicate_projectile(np.SerializeEntity(projectile_id), position_x, position_y, target_x, target_y)
|
||||
end
|
||||
EntityAddTag(projectile_id, "ew_replicated")
|
||||
EntityAddTag(projectile_id, "ew_no_enemy_sync")
|
||||
end
|
||||
EntityAddTag(projectile_id, "ew_replicated")
|
||||
EntityAddTag(projectile_id, "ew_no_enemy_sync")
|
||||
end
|
||||
|
||||
rpc.opts_reliable()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue