diff --git a/code/game/objects/items/blueprints.dm b/code/game/objects/items/blueprints.dm index 514ac336ea7..2fc52a71ef2 100644 --- a/code/game/objects/items/blueprints.dm +++ b/code/game/objects/items/blueprints.dm @@ -107,7 +107,7 @@ /obj/item/areaeditor/proc/get_area_type(var/area/A = get_area()) - if (istype(A,/area/space)) + if (A.name == "Space") return AREA_SPACE var/list/SPECIALS = list( /area/shuttle, @@ -119,6 +119,7 @@ /area/syndicate_station, /area/wizard_station, /area/prison + // /area/derelict //commented out, all hail derelict-rebuilders! ) for (var/type in SPECIALS) if ( istype(A,type) ) diff --git a/icons/obj/items.dmi b/icons/obj/items.dmi index f4b435f9ed1..18b76b54558 100644 Binary files a/icons/obj/items.dmi and b/icons/obj/items.dmi differ