mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2026-07-21 13:13:29 +01:00
Merge pull request #6619 from VOREStation/fix-seeds-runtime
Fix Sundry Runtime Errors
This commit is contained in:
@@ -62,7 +62,7 @@
|
||||
set name = "Notify Transcore"
|
||||
set desc = "If your past-due backup notification was missed or ignored, you can use this to send a new one."
|
||||
|
||||
if(src.mind.name in SStranscore.backed_up)
|
||||
if(src.mind && src.mind.name in SStranscore.backed_up)
|
||||
var/datum/transhuman/mind_record/record = SStranscore.backed_up[src.mind.name]
|
||||
if(!(record.dead_state == MR_DEAD))
|
||||
to_chat(src, "<span class='warning'>Your backup is not past-due yet.</span>")
|
||||
|
||||
@@ -198,6 +198,10 @@
|
||||
if(LAZYLEN(vore_organs))
|
||||
return
|
||||
|
||||
// Since they have bellies, add verbs to toggle settings on them.
|
||||
verbs |= /mob/living/simple_mob/proc/toggle_digestion
|
||||
verbs |= /mob/living/simple_mob/proc/toggle_fancygurgle
|
||||
|
||||
//A much more detailed version of the default /living implementation
|
||||
var/obj/belly/B = new /obj/belly(src)
|
||||
vore_selected = B
|
||||
|
||||
Reference in New Issue
Block a user