Runtime fix for trying to remove a missing beaker from the cryo tubes. The beakers now drop one tile down of the cryo instead of the tube location, it's more visible now.

Completed the runtime fix of r5574.

git-svn-id: http://tgstation13.googlecode.com/svn/trunk@5575 316c924e-a436-60f5-8080-3fe189b3f50e
This commit is contained in:
aranclanos@hotmail.com
2013-01-18 17:48:07 +00:00
parent 96d8d78e3e
commit a4d74b10c4
2 changed files with 5 additions and 2 deletions

View File

@@ -296,6 +296,7 @@
else
src.menu = 3
else
src.active_record = null
src.temp = "Record missing."
else if (href_list["del_rec"])

View File

@@ -100,8 +100,10 @@
on = !on
update_icon()
if(href_list["eject"])
beaker:loc = loc
beaker = null
if (beaker)
var/obj/item/weapon/reagent_containers/glass/B = beaker
B.loc = get_step(loc, SOUTH)
beaker = null
updateUsrDialog()
add_fingerprint(usr)