remove some not super useful logs

This commit is contained in:
bgkillas 2024-09-17 06:56:02 -04:00
parent 95026802e5
commit e377402279
2 changed files with 3 additions and 3 deletions

View file

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

View file

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