mirror of
https://github.com/Aurorastation/Aurora-Old.git
synced 2026-07-16 10:12:19 +01:00
Beurocracy
Adds the ability to print forms from the request console, and to print them. Lays the groundwork for things to move over into adding more paper shenanigans.
This commit is contained in:
@@ -70,17 +70,21 @@
|
||||
return
|
||||
|
||||
|
||||
/obj/item/weapon/paper_bin/attackby(obj/item/weapon/paper/i as obj, mob/user as mob)
|
||||
if(!istype(i))
|
||||
return
|
||||
|
||||
user.drop_item()
|
||||
i.loc = src
|
||||
user << "<span class='notice'>You put [i] in [src].</span>"
|
||||
papers.Add(i)
|
||||
amount++
|
||||
|
||||
|
||||
/obj/item/weapon/paper_bin/attackby(obj/item/weapon/O as obj, mob/user as mob)
|
||||
if(istype(O, /obj/item/weapon/paper))
|
||||
var/obj/item/weapon/paper/i = O
|
||||
user.drop_item()
|
||||
i.loc = src
|
||||
user << "<span class='notice'>You put [i] in [src].</span>"
|
||||
papers.Add(i)
|
||||
amount++
|
||||
/* if(istype(O, /obj/item/weapon/paper_pack)) WIP written in.
|
||||
var/obj/item/weapon/paper_bundle/j = O
|
||||
user.drop_item()
|
||||
amount += j.amount
|
||||
user << "<span class='notice'>You add paper from [j] into [src].</span>"
|
||||
del(j)
|
||||
*/
|
||||
/obj/item/weapon/paper_bin/examine()
|
||||
set src in oview(1)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user