Skip to content

Commit

Permalink
update surgery_status field init
Browse files Browse the repository at this point in the history
  • Loading branch information
intercepti0n committed Oct 11, 2023
1 parent f027e32 commit e5e53e4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion code/modules/mob/living/carbon/carbon.dm
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
/mob/living/carbon/Destroy()
QDEL_NULL(touching)
QDEL_NULL(bloodstr)
QDEL_NULL(op_stage)
QDEL_NULL(surgery_status)

reagents = null //We assume reagents is a reference to bloodstr here

Expand Down
2 changes: 1 addition & 1 deletion code/modules/mob/living/carbon/carbon_defines.dm
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
var/life_tick = 0 // The amount of life ticks that have processed on this mob.
var/obj/item/handcuffed = null //Whether or not the mob is handcuffed
//Surgery info
var/datum/surgery_status/op_stage = new /datum/surgery_status
var/datum/surgery_status/surgery_status = new()
var/analgesic = 0 // when this is set, the mob isn't affected by shock or pain
//Active emote/pose
var/pose = null
Expand Down

0 comments on commit e5e53e4

Please sign in to comment.