adds verb returns (#30226)

This commit is contained in:
Kyani
2025-08-28 14:51:42 +00:00
committed by GitHub
parent a3d9ecf4c9
commit ee6e804320
2 changed files with 4 additions and 1 deletions
+1 -1
View File
@@ -195,7 +195,7 @@
static_inventory += using
var/mob/camera/blob/B = user
if(!B.is_offspring && (length(GLOB.clients) > GLOB.configuration.event.blob_highpop_trigger)) // Checks if the blob is an offspring or below a population value, to not create split button if it is
if(!B.is_offspring && (length(GLOB.clients) >= GLOB.configuration.event.blob_highpop_trigger)) // Checks if the blob is an offspring or below a population value, to not create split button if it is
using = new /atom/movable/screen/blob/split()
using.screen_loc = ui_acti
static_inventory += using
+3
View File
@@ -385,6 +385,9 @@
if(is_offspring)
to_chat(src, "<span class='warning'>You cannot split as an offspring of another Blob.</span>")
return
if(length(GLOB.clients) < GLOB.configuration.event.blob_highpop_trigger)
to_chat(src, "<span class='warning'>There isnt enough organic matter on this station to justify a second core.</span>")
return
var/obj/structure/blob/N = (locate(/obj/structure/blob) in T)
if(!N)