mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2025-12-22 08:01:06 +00:00
Pen and PDA related fixes (#7483)
This commit is contained in:
@@ -388,7 +388,11 @@
|
||||
iscrayon = TRUE
|
||||
|
||||
if(istype(i, /obj/item/pen/fountain))
|
||||
isfountain = TRUE
|
||||
var/obj/item/pen/fountain/f = i
|
||||
if(f.cursive)
|
||||
isfountain = TRUE
|
||||
else
|
||||
isfountain = FALSE
|
||||
|
||||
// if paper is not in usr, then it must be near them, or in a clipboard or folder, which must be in or near usr
|
||||
if(src.loc != usr && !src.Adjacent(usr) && !((istype(src.loc, /obj/item/clipboard) || istype(src.loc, /obj/item/folder)) && (src.loc.loc == usr || src.loc.Adjacent(usr)) ) )
|
||||
|
||||
@@ -107,9 +107,13 @@
|
||||
icon_state = "pen_fountain"
|
||||
throwforce = 1 //pointy
|
||||
colour = "#1c1713" //dark ashy brownish
|
||||
var/cursive = TRUE
|
||||
|
||||
/obj/item/pen/fountain/attack_self(var/mob/user)
|
||||
return
|
||||
playsound(loc, 'sound/items/penclick.ogg', 50, 1)
|
||||
to_chat(user, span("notice", "You snap the nib into position to write [cursive ? "normally" : "in cursive"]."))
|
||||
cursive = !cursive
|
||||
|
||||
/*
|
||||
* PDA Fountain Pens
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user