From e37740227918b1762fa2df66c2969183e964002e Mon Sep 17 00:00:00 2001 From: bgkillas Date: Tue, 17 Sep 2024 06:56:02 -0400 Subject: [PATCH] remove some not super useful logs --- quant.ew/files/system/enemy_sync.lua | 2 +- quant.ew/files/system/spawn_hooks/spawn_hooks.lua | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/quant.ew/files/system/enemy_sync.lua b/quant.ew/files/system/enemy_sync.lua index 19e2f907..ea3c79c0 100644 --- a/quant.ew/files/system/enemy_sync.lua +++ b/quant.ew/files/system/enemy_sync.lua @@ -302,7 +302,7 @@ function enemy_sync.client_cleanup() for i, enemy_id in ipairs(entities) do if not EntityHasTag(enemy_id, "ew_replicated") then local filename = EntityGetFilename(enemy_id) - print("Despawning unreplicated "..enemy_id.." "..filename) + --print("Despawning unreplicated "..enemy_id.." "..filename) EntityKill(enemy_id) elseif not spawned_by_us[enemy_id] then local filename = EntityGetFilename(enemy_id) diff --git a/quant.ew/files/system/spawn_hooks/spawn_hooks.lua b/quant.ew/files/system/spawn_hooks/spawn_hooks.lua index 4f0f1ee8..738eb55b 100644 --- a/quant.ew/files/system/spawn_hooks/spawn_hooks.lua +++ b/quant.ew/files/system/spawn_hooks/spawn_hooks.lua @@ -76,7 +76,7 @@ function module.entity_is_synced(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 tags = util.load_ents_tags(ent_path) @@ -86,4 +86,4 @@ function module.entity_is_synced(ent_path) return res end -return module +return module \ No newline at end of file