adds missing /'s at the starts of some obj instances (#7169)
This commit is contained in:
committed by
kevinz000
parent
75def268a6
commit
db25067491
@@ -14,7 +14,7 @@
|
||||
visor_flags_cover = MASKCOVERSMOUTH
|
||||
resistance_flags = NONE
|
||||
|
||||
obj/item/clothing/mask/breath/suicide_act(mob/living/carbon/user)
|
||||
/obj/item/clothing/mask/breath/suicide_act(mob/living/carbon/user)
|
||||
user.visible_message("<span class='suicide'>[user] is wrapping \the [src]'s tube around [user.p_their()] neck! It looks like [user.p_theyre()] trying to commit suicide!</span>")
|
||||
return OXYLOSS
|
||||
|
||||
|
||||
@@ -174,7 +174,7 @@
|
||||
dog_fashion = null
|
||||
|
||||
|
||||
obj/item/clothing/mask/gas/tiki_mask/ui_action_click(mob/user)
|
||||
/obj/item/clothing/mask/gas/tiki_mask/ui_action_click(mob/user)
|
||||
|
||||
var/mob/M = usr
|
||||
var/list/options = list()
|
||||
|
||||
@@ -101,7 +101,7 @@
|
||||
return message
|
||||
|
||||
///frog mask - reeee!!
|
||||
obj/item/clothing/mask/frog
|
||||
/obj/item/clothing/mask/frog
|
||||
name = "frog mask"
|
||||
desc = "An ancient mask carved in the shape of a frog.<br> Sanity is like gravity, all it needs is a push."
|
||||
icon_state = "frog"
|
||||
@@ -122,8 +122,13 @@ obj/item/clothing/mask/frog
|
||||
message = pick("Ree!!", "Reee!!","REEE!!","REEEEE!!") //but its usually just angry gibberish,
|
||||
return message
|
||||
|
||||
<<<<<<< HEAD
|
||||
obj/item/clothing/mask/frog/cursed
|
||||
flags_1 = NODROP_1 //reee!!
|
||||
=======
|
||||
/obj/item/clothing/mask/frog/cursed
|
||||
item_flags = NODROP //reee!!
|
||||
>>>>>>> 6d558b6... puts a / at the start of some obj instances (#38545)
|
||||
|
||||
/obj/item/clothing/mask/frog/cursed/attack_self(mob/user)
|
||||
return //no voicebox to alter.
|
||||
|
||||
@@ -404,7 +404,7 @@
|
||||
activate_pin(3)
|
||||
return FALSE
|
||||
|
||||
obj/item/integrated_circuit/reagent/storage/juicer
|
||||
/obj/item/integrated_circuit/reagent/storage/juicer
|
||||
name = "reagent juicer"
|
||||
desc = "This is a reagent juicer. It accepts a ref to something and refines it into reagents. It can store up to 100u."
|
||||
icon_state = "blender"
|
||||
|
||||
@@ -253,7 +253,7 @@ interface with the mining shuttle at the landing site if a mobile beacon is also
|
||||
place.ScrapeAway()
|
||||
return ..()
|
||||
|
||||
obj/docking_port/stationary/public_mining_dock
|
||||
/obj/docking_port/stationary/public_mining_dock
|
||||
name = "public mining base dock"
|
||||
id = "disabled" //The Aux Base has to leave before this can be used as a dock.
|
||||
//Should be checked on the map to ensure it matchs the mining shuttle dimensions.
|
||||
|
||||
@@ -93,7 +93,7 @@
|
||||
b_o.pixel_x = -7
|
||||
return b_o
|
||||
|
||||
obj/machinery/chem_dispenser/proc/work_animation()
|
||||
/obj/machinery/chem_dispenser/proc/work_animation()
|
||||
if(working_state)
|
||||
flick(working_state,src)
|
||||
|
||||
@@ -504,7 +504,7 @@ obj/machinery/chem_dispenser/proc/work_animation()
|
||||
"diethylamine")
|
||||
|
||||
/obj/machinery/chem_dispenser/fullupgrade //fully upgraded stock parts
|
||||
|
||||
|
||||
/obj/machinery/chem_dispenser/fullupgrade/Initialize()
|
||||
. = ..()
|
||||
component_parts = list()
|
||||
|
||||
Reference in New Issue
Block a user