mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-07-20 19:44:46 +01:00
refactors most spans
This commit is contained in:
@@ -41,7 +41,7 @@
|
||||
throw_range = 20
|
||||
var/randomize = TRUE
|
||||
var/square_chance = 10
|
||||
|
||||
|
||||
/obj/item/soap/Initialize()
|
||||
if(randomize && prob(square_chance))
|
||||
icon_state = "[icon_state]-alt"
|
||||
@@ -331,7 +331,7 @@
|
||||
if (C.bugged && C.status)
|
||||
cameras.Add(C)
|
||||
if (length(cameras) == 0)
|
||||
to_chat(usr, "<span class='warning'>No bugged functioning cameras found.</span>")
|
||||
to_chat(usr, span_warning("No bugged functioning cameras found."))
|
||||
return
|
||||
|
||||
var/list/friendly_cameras = new/list()
|
||||
@@ -433,7 +433,7 @@
|
||||
/obj/item/storage/part_replacer/examine(mob/user)
|
||||
. = ..()
|
||||
if(!reskin_ran)
|
||||
. += "<span class='notice'>[src]'s external casing can be modified via alt-click.</span>"
|
||||
. += span_notice("[src]'s external casing can be modified via alt-click.")
|
||||
|
||||
/obj/item/storage/part_replacer/AltClick(mob/user)
|
||||
. = ..()
|
||||
|
||||
Reference in New Issue
Block a user