mirror of
https://github.com/SPLURT-Station/S.P.L.U.R.T-Station-13.git
synced 2026-08-26 22:28:03 +01:00
Merge pull request #378 from WoolyAypa/dumb4cum
This commit is contained in:
@@ -779,6 +779,10 @@ GLOBAL_LIST_EMPTY(PDAs)
|
||||
return t
|
||||
|
||||
/obj/item/pda/proc/send_message(mob/living/user, list/obj/item/pda/targets, everyone)
|
||||
if(HAS_TRAIT(user, TRAIT_DUMB4CUM))
|
||||
to_chat(user, "<span class='love'>You can't focus on anything but cum right now!</span>")
|
||||
return
|
||||
|
||||
var/message = msg_input(user)
|
||||
if(!message || !targets.len)
|
||||
return
|
||||
@@ -861,7 +865,7 @@ GLOBAL_LIST_EMPTY(PDAs)
|
||||
else
|
||||
L = get(src, /mob/living/silicon)
|
||||
|
||||
if(L && L.stat != UNCONSCIOUS)
|
||||
if(L && L.stat != UNCONSCIOUS && !HAS_TRAIT(L, TRAIT_DUMB4CUM))
|
||||
var/hrefstart
|
||||
var/hrefend
|
||||
if (isAI(L))
|
||||
|
||||
@@ -24,6 +24,9 @@
|
||||
if(!user.is_literate())
|
||||
to_chat(user, "<span class='notice'>You scribble illegibly on the side of [src]!</span>")
|
||||
return
|
||||
if(HAS_TRAIT(user, TRAIT_DUMB4CUM))
|
||||
to_chat(user, "<span class='love'>You can't think of anything but cum right now.</span>")
|
||||
return
|
||||
var/t = stripped_input(user, "What would you like the label to be?", name, null)
|
||||
if(user.get_active_held_item() != W)
|
||||
return
|
||||
|
||||
@@ -45,6 +45,9 @@
|
||||
if(!user.is_literate())
|
||||
to_chat(user, "<span class='notice'>You prod at [src] with [W]!</span>")
|
||||
return
|
||||
if(HAS_TRAIT(user, TRAIT_DUMB4CUM))
|
||||
to_chat(user, "<span class='love'>You can't think of anything but cum right now.</span>")
|
||||
return
|
||||
var/t = stripped_input(user, "What would you like the label to be?", name, null)
|
||||
if(user.get_active_held_item() != W)
|
||||
return
|
||||
|
||||
@@ -21,6 +21,9 @@
|
||||
if(!user.is_literate())
|
||||
to_chat(user, "<span class='notice'>You scribble illegibly on [src]!</span>")
|
||||
return
|
||||
if(HAS_TRAIT(user, TRAIT_DUMB4CUM))
|
||||
to_chat(user, "<span class='love'>You can't think of anything but cum right now.</span>")
|
||||
return
|
||||
var/txt = stripped_input(user, "What would you like to write on the sign?", "Sign Label", null , 30)
|
||||
if(txt && user.canUseTopic(src, BE_CLOSE))
|
||||
label = txt
|
||||
|
||||
Reference in New Issue
Block a user