Skip to content

Commit

Permalink
needs to be before the sleep
Browse files Browse the repository at this point in the history
  • Loading branch information
iloveloopers committed Jun 24, 2024
1 parent 3931edd commit 9263d8f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion code/modules/reagents/chemical_research/research-events.dm
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,14 @@ GLOBAL_DATUM_INIT(ddi_experiment, /datum/research_event/ddi_experiment, new)
linked_xeno = xeno
if(linked_xeno.client)
player = linked_xeno.client
RegisterSignal(linked_xeno, COMSIG_MOB_NEW_MIND, PROC_REF(get_mind)) //this works as long as the client is not forcefully set by admins

ai_announcement("Notice: Unidentified lifesign detected at research containment created through DNA disintegration, analyzing data...")
sleep(5 SECONDS)
ai_announcement("Notice: Lifeform biostructural data can be analyzed further for tech point and research credit reward at a rate of 1 point per minute.")

timer = world.time
START_PROCESSING(SSprocessing, src)
RegisterSignal(linked_xeno, COMSIG_MOB_NEW_MIND, PROC_REF(get_mind)) //this works as long as the client is not forcefully set by admins

/datum/research_event/ddi_experiment/process(delta_time)
if(total_points_given >= 20)
Expand Down

0 comments on commit 9263d8f

Please sign in to comment.