Telesci / Poly Update

This commit is contained in:
SamCroswell
2015-07-07 02:10:54 -04:00
parent 5e3e54a946
commit f7cc10aae5
2 changed files with 9 additions and 7 deletions
@@ -74,11 +74,10 @@
var/obj/parrot_perch = null
var/obj/desired_perches = list(/obj/structure/computerframe, /obj/structure/displaycase, \
/obj/structure/filingcabinet, /obj/machinery/teleport, \
/obj/machinery/computer, /obj/machinery/clonepod, \
/obj/machinery/suit_storage_unit, /obj/machinery/clonepod, \
/obj/machinery/dna_scannernew, /obj/machinery/telecomms, \
/obj/machinery/nuclearbomb, /obj/machinery/particle_accelerator, \
/obj/machinery/recharge_station, /obj/machinery/smartfridge, \
/obj/machinery/suit_storage_unit)
/obj/machinery/recharge_station, /obj/machinery/smartfridge)
//Parrots are kleptomaniacs. This variable ... stores the item a parrot is holding.
var/obj/item/held_item = null
+7 -4
View File
@@ -318,9 +318,12 @@
return
return
/obj/machinery/computer/telescience/proc/eject()
/obj/machinery/computer/telescience/proc/eject(mob/user)
if(!user) return
for(var/obj/item/I in crystals)
I.loc = src.loc
I.loc = user.loc
crystals -= I
power = 0
@@ -361,7 +364,7 @@
if(href_list["ejectGPS"])
if(inserted_gps)
inserted_gps.loc = loc
inserted_gps.loc = usr.loc
inserted_gps = null
if(href_list["setMemory"])
@@ -385,7 +388,7 @@
temp_msg = "NOTICE:<BR>Calibration successful."
if(href_list["eject"])
eject()
eject(usr)
temp_msg = "NOTICE:<BR>Bluespace crystals ejected."
updateUsrDialog()