next new to init (#17400)

* next new to init

* .

* this needs thorough testing

* .

* needs an istype

* also vnotice

* mvoe to defines
This commit is contained in:
Kashargul
2025-03-24 11:18:39 +01:00
committed by GitHub
parent 8a4ac36d15
commit d3b7ba8b43
141 changed files with 529 additions and 601 deletions
+2 -2
View File
@@ -8,8 +8,8 @@
var/codelen = 4
locked = 1
/obj/structure/closet/crate/secure/loot/New()
..()
/obj/structure/closet/crate/secure/loot/Initialize(mapload)
. = ..()
var/list/digits = list("1", "2", "3", "4", "5", "6", "7", "8", "9", "0")
for(var/i in 1 to codelen)
+1 -1
View File
@@ -669,7 +669,7 @@ var/list/mining_overlay_cache = list()
if(is_clean)
X = new /obj/item/archaeological_find(src, F.find_type)
else
X = new /obj/item/strangerock(src, inside_item_type = F.find_type)
X = new /obj/item/strangerock(src, F.find_type)
geologic_data.UpdateNearbyArtifactInfo(src)
var/obj/item/strangerock/SR = X
SR.geologic_data = geologic_data
+2 -2
View File
@@ -193,11 +193,11 @@ GLOBAL_LIST_EMPTY(unique_deployable)
/obj/structure/table/survival_pod/update_icon()
icon_state = "table"
/obj/structure/table/survival_pod/New()
/obj/structure/table/survival_pod/Initialize(mapload)
material = get_material_by_name(MAT_STEEL)
. = ..()
verbs -= /obj/structure/table/verb/do_flip
verbs -= /obj/structure/table/proc/do_put
..()
/obj/structure/table/survival_pod/dismantle(obj/item/tool/wrench/W, mob/user)
to_chat(user, span_warning("You cannot dismantle \the [src]."))