mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-08-22 03:27:05 +01:00
Convert xenomorph shuttle to proper multishuttle
This commit is contained in:
@@ -6,7 +6,7 @@
|
||||
warn_on_return = 1
|
||||
|
||||
/obj/machinery/computer/shuttle_control/multi/vox/attack_ai(user as mob)
|
||||
user << "\red Access Denied."
|
||||
user << "<span class='warning'>Access Denied.</span>"
|
||||
return 1
|
||||
|
||||
/obj/machinery/computer/shuttle_control/multi/syndicate
|
||||
@@ -16,5 +16,34 @@
|
||||
is_syndicate = 1
|
||||
|
||||
/obj/machinery/computer/shuttle_control/multi/syndicate/attack_ai(user as mob)
|
||||
user << "\red Access Denied."
|
||||
return 1
|
||||
user << "<span class='warning'> Access Denied.</span>"
|
||||
return 1
|
||||
|
||||
/obj/machinery/computer/shuttle_control/multi/xenos
|
||||
name = "alien control console"
|
||||
shuttle_tag = "Xenomorph"
|
||||
icon_keyboard = "telesci_key"
|
||||
icon_screen = "telesci"
|
||||
|
||||
/obj/machinery/computer/shuttle_control/multi/xenos/attack_hand(user as mob)
|
||||
user << "<span class='warning'>You do not know how to operate this machinery.</span>"
|
||||
return 1
|
||||
|
||||
/obj/machinery/computer/shuttle_control/multi/xenos/attack_ai(user as mob)
|
||||
user << "<span class='warning'>Access Denied.</span>"
|
||||
return 1
|
||||
|
||||
/obj/machinery/computer/shuttle_control/multi/xenos/attack_ghost(user as mob)
|
||||
ui_interact(user)
|
||||
|
||||
/obj/machinery/computer/shuttle_control/multi/xenos/attack_alien(user as mob)
|
||||
ui_interact(user)
|
||||
|
||||
/obj/machinery/computer/shuttle_control/multi/xenos/CanUseTopic(mob/user)
|
||||
if(isalien(user))
|
||||
return STATUS_INTERACTIVE
|
||||
|
||||
if(ishuman(user))
|
||||
return STATUS_CLOSE
|
||||
|
||||
return ..()
|
||||
Reference in New Issue
Block a user