1
0
mirror of https://github.com/ComfyFactory/ComfyFactorio.git synced 2025-03-21 21:17:04 +02:00

fix showing time when protections unlock stuck at 24hr

This commit is contained in:
danielmartin0 2024-09-15 18:30:39 +01:00
parent f10ee917d9
commit 6f0af64bbe

View File

@ -512,10 +512,10 @@ function Public.full_update(player)
flow.ongoing_runs.body.leaving_prompt.visible = playercrew_status.leaving
local show_protected_info = crewid and global_memory.crew_memories[crewid].run_is_protected
local show_protected_info = crewid and global_memory.crew_memories[crewid].run_is_protected and global_memory.crew_memories[crewid].protected_run_lock_timer < 60 * 60 * 60 * CoreData.protected_run_lock_amount_hr
flow.ongoing_runs.body.join_protected_crew_info.visible = show_protected_info
local show_private_info = crewid and global_memory.crew_memories[crewid].run_is_private
local show_private_info = crewid and global_memory.crew_memories[crewid].run_is_private and global_memory.crew_memories[crewid].private_run_lock_timer < 60 * 60 * 60 * CoreData.private_run_lock_amount_hr
flow.ongoing_runs.body.join_private_crew_info.visible = show_private_info
flow.ongoing_runs.body.password_namefield.visible = show_private_info
end