mirror of
https://github.com/SPLURT-Station/S.P.L.U.R.T-Station-13.git
synced 2026-01-02 05:04:46 +00:00
9 lines
252 B
Plaintext
9 lines
252 B
Plaintext
/datum/mood_event/proc/owner_mob()
|
|
var/mob/living/carbon/human/actual_owner
|
|
var/datum/component/mood/wrong_declaration = owner
|
|
if(istype(wrong_declaration))
|
|
actual_owner = wrong_declaration.parent
|
|
else
|
|
actual_owner = owner
|
|
return actual_owner
|