Magboot and glove fix (#19415)

* Magboot and glove fix

* Update armblade.dm

* Update leash.dm
This commit is contained in:
Cameron Lennox
2026-04-16 10:40:31 -04:00
committed by GitHub
parent bdffa69343
commit 51b00a200c
86 changed files with 278 additions and 360 deletions
+8 -18
View File
@@ -332,27 +332,27 @@
if(message)
to_chat(user, message)
*/
/obj/item/areaeditor/blueprints/dropped(mob/user)
/obj/item/areaeditor/blueprints/dropped(mob/user, equipping, slot)
if(equipping)
return ..()
..()
//clear_viewer()
if(areaColor_turfs.len)
seeAreaColors_remove()
legend = FALSE
/obj/item/areaeditor/proc/get_area_type(area/A)
if (!A)
if(!A)
A = get_area(usr)
if(A.outdoors)
return AREA_SPACE
for (var/type in GLOB.BUILDABLE_AREA_TYPES)
if ( istype(A,type) )
for(var/type in GLOB.BUILDABLE_AREA_TYPES)
if(istype(A,type))
return AREA_SPACE
for (var/type in GLOB.SPECIALS)
if ( istype(A,type) )
for(var/type in GLOB.SPECIALS)
if(istype(A,type))
return AREA_SPECIAL
return AREA_STATION
@@ -776,16 +776,6 @@
if(i.icon_state == "blueprints")
usr.client.images.Remove(i)
//GLOBAL VERB FOR PAPER TO ENABLE ANYONE TO MAKE AN AREA IN BUILDABLE AREAS.
//THIS IS 70 TILES. ANYTHING LARGER SHOULD USE ACTUAL BLUEPRINTS.