mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-08-23 03:57:13 +01:00
Telesci / Poly Update
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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()
|
||||
|
||||
Reference in New Issue
Block a user