Updated bedsheets and linen bins. Moved bedsheets out of defines, into bedsheet_bin.dm.

Standardised airlock_control.dm, and removed some useless spawn()s.
Updated a few things in paperbin.dm.

git-svn-id: http://tgstation13.googlecode.com/svn/trunk@4891 316c924e-a436-60f5-8080-3fe189b3f50e
This commit is contained in:
petethegoat@gmail.com
2012-10-16 14:17:06 +00:00
parent 964b86fdbd
commit 981ea58a47
8 changed files with 305 additions and 254 deletions
+4 -8
View File
@@ -44,14 +44,10 @@
P.updateinfolinks()
P.loc = user.loc
if(ishuman(user))
user.put_in_hands(P)
user << "<span class='notice'>You take a paper out of the bin.</span>"
else
P.loc = get_turf_loc(src)
user << "<span class='notice'>You take a paper out of the bin.</span>"
user.put_in_hands(P)
user << "<span class='notice'>You take [P] out of the [src].</span>"
else
user << "<span class='notice'>The paper bin is empty!</span>"
user << "<span class='notice'>[src] is empty!</span>"
add_fingerprint(user)
return
@@ -63,7 +59,7 @@
user.drop_item()
i.loc = src
usr << "<span class='notice'>You put the paper on the top of the paper bin.</span>"
user << "<span class='notice'>You put [i] in [src].</span>"
papers.Add(i)
amount++