[MIRROR] Removes Gender (#11822)

Co-authored-by: Guti <32563288+TheCaramelion@users.noreply.github.com>
Co-authored-by: Cameron Lennox <killer65311@gmail.com>
This commit is contained in:
CHOMPStation2StaffMirrorBot
2025-10-17 07:24:05 -04:00
committed by GitHub
co-authored by Guti Cameron Lennox
parent be44d01093
commit 0f19a089c4
54 changed files with 849 additions and 365 deletions
+1 -2
View File
@@ -382,13 +382,12 @@
/obj/item/paper/proc/burnpaper(obj/item/flame/P, mob/user)
var/class = "warning"
var/datum/gender/TU = GLOB.gender_datums[user.get_visible_gender()]
if(P.lit && !user.restrained())
if(istype(P, /obj/item/flame/lighter/zippo))
class = "rose"
user.visible_message("<span class='[class]'>[user] holds \the [P] up to \the [src], it looks like [TU.hes] trying to burn it!</span>", \
user.visible_message("<span class='[class]'>[user] holds \the [P] up to \the [src], it looks like [user.p_theyre()] trying to burn it!</span>", \
"<span class='[class]'>You hold \the [P] up to \the [src], burning it slowly.</span>")
playsound(src, 'sound/bureaucracy/paperburn.ogg', 50, 1)
+1 -2
View File
@@ -78,8 +78,7 @@
if(P.lit && !user.restrained())
if(istype(P, /obj/item/flame/lighter/zippo))
class = "rose>"
var/datum/gender/TU = GLOB.gender_datums[user.get_visible_gender()]
user.visible_message("<span class='[class]'>[user] holds \the [P] up to \the [src], it looks like [TU.he] [TU.is] trying to burn it!</span>", \
user.visible_message("<span class='[class]'>[user] holds \the [P] up to \the [src], it looks like [user.p_theyre()] trying to burn it!</span>", \
"<span class='[class]'>You hold \the [P] up to \the [src], burning it slowly.</span>")
spawn(20)
+1 -2
View File
@@ -163,13 +163,12 @@
..()
/obj/item/shreddedp/proc/burnpaper(var/obj/item/flame/lighter/P, var/mob/user)
var/datum/gender/TU = GLOB.gender_datums[user.get_visible_gender()]
if(user.restrained())
return
if(!P.lit)
to_chat(user, span_warning("\The [P] is not lit."))
return
user.visible_message(span_warning("\The [user] holds \the [P] up to \the [src]. It looks like [TU.he] [TU.is] trying to burn it!"), \
user.visible_message(span_warning("\The [user] holds \the [P] up to \the [src]. It looks like [user.p_theyre()] trying to burn it!"), \
span_warning("You hold \the [P] up to \the [src], burning it slowly."))
if(!do_after(user, 2 SECONDS, target = src))
to_chat(user, span_warning("You must hold \the [P] steady to burn \the [src]."))