This commit is contained in:
IQuant 2024-06-19 15:01:33 +03:00
parent df493891ac
commit 528bc229c7
3 changed files with 4 additions and 4 deletions

View file

@ -1922,7 +1922,7 @@ checksum = "2bf50223579dc7cdcfb3bfcacf7069ff68243f8c363f62ffa99cf000a6b9c451"
[[package]]
name = "noita-proxy"
version = "0.12.2"
version = "0.12.3"
dependencies = [
"bincode",
"bitcode",

View file

@ -4,7 +4,7 @@ members = ["tangled"]
[package]
name = "noita-proxy"
description = "Noita Entangled Worlds companion app."
version = "0.12.2"
version = "0.12.3"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

View file

@ -29,7 +29,7 @@ function module.entity_is_enemy(ent_path)
return entity_is_enemy_cache[ent_path]
end
print("Checking if this is an enemy:", ent_path)
print("Checking if this is an enemy: "..ent_path)
local ent = EntityLoad(ent_path) -- TODO: Just read xml maybe
local res = EntityHasTag(ent, "enemy")