mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-07-17 18:13:34 +01:00
Fix thermal for saboteur, reinforcement bugfix, re-add C4 pack
This commit is contained in:
@@ -20,7 +20,7 @@
|
||||
var/checking = FALSE
|
||||
|
||||
/obj/item/antag_spawner/nuke_ops/proc/before_candidate_search(user)
|
||||
return
|
||||
return TRUE
|
||||
|
||||
/obj/item/antag_spawner/nuke_ops/proc/check_usability(mob/user)
|
||||
if(used)
|
||||
|
||||
@@ -441,9 +441,6 @@
|
||||
/obj/item/robot_module/syndicate_saboteur
|
||||
name = "engineering robot module" //to disguise in examine
|
||||
module_type = "Malf"
|
||||
module_actions = list(
|
||||
/datum/action/innate/robot_sight/thermal,
|
||||
)
|
||||
|
||||
stacktypes = list(
|
||||
/obj/item/stack/sheet/metal/cyborg = 50,
|
||||
|
||||
@@ -70,12 +70,17 @@
|
||||
/mob/living/silicon/robot/syndicate/saboteur/init()
|
||||
..()
|
||||
module = new /obj/item/robot_module/syndicate_saboteur(src)
|
||||
|
||||
var/obj/item/borg/upgrade/selfrepair/SR = new /obj/item/borg/upgrade/selfrepair(src)
|
||||
SR.cyborg = src
|
||||
SR.icon_state = "selfrepair_off"
|
||||
var/datum/action/A = new /datum/action/item_action/toggle(SR)
|
||||
A.Grant(src)
|
||||
|
||||
var/datum/action/self_repair = new /datum/action/item_action/toggle(SR)
|
||||
self_repair.Grant(src)
|
||||
|
||||
var/datum/action/thermals = new /datum/action/innate/robot_sight/thermal()
|
||||
thermals.Grant(src)
|
||||
|
||||
/mob/living/silicon/robot/syndicate/saboteur/verb/modify_name()
|
||||
set name = "Modify Name"
|
||||
set desc = "Change your systems' registered name to fool Nanotrasen systems. No cost."
|
||||
|
||||
Reference in New Issue
Block a user