Merge branch 'master' into one_last_taser_attempt
This commit is contained in:
@@ -18,7 +18,7 @@
|
||||
if(!has_active_hand())
|
||||
to_chat(src, "<span class='notice'>You ponder your life choices and sigh.</span>")
|
||||
return TRUE
|
||||
var/list/src_viewers = get_hearers_in_view(DEFAULT_MESSAGE_RANGE, src) - src // src has a different message.
|
||||
var/list/src_viewers = viewers(DEFAULT_MESSAGE_RANGE, src) - src // src has a different message.
|
||||
var/the_action = "waves to [A]"
|
||||
var/what_action = "waves to something you can't see"
|
||||
var/self_action = "wave to [A]"
|
||||
|
||||
@@ -211,10 +211,10 @@
|
||||
|
||||
/mob/living/verb/toggle_hypno()
|
||||
set category = "IC"
|
||||
set name = "Toggle Lewd MKUltra"
|
||||
set desc = "Allows you to toggle if you'd like lewd flavour messages for MKUltra."
|
||||
set name = "Toggle Lewd Hypno"
|
||||
set desc = "Allows you to toggle if you'd like lewd flavour messages for hypno features, such as MKUltra."
|
||||
client.prefs.cit_toggles ^= HYPNO
|
||||
to_chat(usr, "You [((client.prefs.cit_toggles & HYPNO) ?"will":"no longer")] receive lewd flavour messages for MKUltra.")
|
||||
to_chat(usr, "You [((client.prefs.cit_toggles & HYPNO) ?"will":"no longer")] receive lewd flavour messages for hypno.")
|
||||
|
||||
/datum/status_effect/chem/enthrall
|
||||
id = "enthrall"
|
||||
|
||||
@@ -305,7 +305,7 @@ datum/gear/darksabresheath
|
||||
/datum/gear/flagcape
|
||||
name = "US Flag Cape"
|
||||
category = SLOT_IN_BACKPACK
|
||||
path = /obj/item/bedsheet/custom/flagcape
|
||||
path = /obj/item/clothing/neck/flagcape
|
||||
ckeywhitelist = list("darnchacha")
|
||||
|
||||
/datum/gear/luckyjack
|
||||
@@ -488,3 +488,9 @@ datum/gear/darksabresheath
|
||||
category = SLOT_SHOES
|
||||
path = /obj/item/clothing/shoes/sneakers/mikuleggings
|
||||
ckeywhitelist = list("grandvegeta")
|
||||
|
||||
/datum/gear/cosmos
|
||||
name = "cosmic space bedsheet"
|
||||
category = SLOT_IN_BACKPACK
|
||||
path = /obj/item/bedsheet/cosmos
|
||||
ckeywhitelist = list("grunnyyy")
|
||||
|
||||
@@ -364,10 +364,11 @@
|
||||
worn_x_dimension = 64
|
||||
worn_y_dimension = 34
|
||||
|
||||
/obj/item/bedsheet/custom/flagcape
|
||||
/obj/item/clothing/neck/flagcape
|
||||
name = "Flag Cape"
|
||||
desc = "A truly patriotic form of heroic attire."
|
||||
icon = 'icons/obj/custom.dmi'
|
||||
resistance_flags = FLAMMABLE
|
||||
alternate_worn_icon = 'icons/mob/custom_w.dmi'
|
||||
icon_state = "flagcape"
|
||||
item_state = "flagcape"
|
||||
|
||||
@@ -333,6 +333,8 @@ Creating a chem with a low purity will make you permanently fall in love with so
|
||||
..()
|
||||
|
||||
/datum/reagent/fermi/proc/FallInLove(mob/living/carbon/Lover, mob/living/carbon/Love)
|
||||
if(Lover.client?.prefs.cit_toggles & NEVER_HYPNO)
|
||||
return // doesn't even give a message, it's just ignored
|
||||
if(Lover.has_status_effect(STATUS_EFFECT_INLOVE))
|
||||
to_chat(Lover, "<span class='warning'>You are already fully devoted to someone else!</span>")
|
||||
return
|
||||
|
||||
Reference in New Issue
Block a user