Jack Rost updates:

-more dismantable consoles:
--Teleporter
--Supply ordering console
--Supply shuttle console
--Power Monitor
-new circuit boards (both constructable and destructable)
--Supply ordering console (programming 2)
--Supply shuttle console (programming 3)
--Outpost Status Display(programming 2)
--Operating Computer (programming 2, biotech 2)
-R&D Console circuit now requires programming 4 (was 6).


Balagi updates:
-Trash bag: works as mining satchels but for trash.
-Started redesign computers code
-fixed candles sprites
-trashbag now has "in hands" sprite
-fixed emagging supply shuttle console

git-svn-id: http://tgstation13.googlecode.com/svn/trunk@1883 316c924e-a436-60f5-8080-3fe189b3f50e
This commit is contained in:
rastaf.zero@gmail.com
2011-07-18 19:17:58 +00:00
parent 6bc651f9ab
commit 4f7030a426
24 changed files with 295 additions and 427 deletions

View File

@@ -45,6 +45,14 @@
user << "You can't place that item inside the disposal unit."
return
if(istype(I, /obj/item/weapon/trashbag))
user << "\blue You empty the bag."
for (var/obj/item/trash/O in I.contents)
I.contents -= O
O.loc = src
I.update_icon()
return
var/obj/item/weapon/grab/G = I
if(istype(G)) // handle grabbed mob
if(ismob(G.affecting))