From b84eb1d7687769366fd7dfe83b382b8b86d81517 Mon Sep 17 00:00:00 2001 From: warriorstar-orion Date: Wed, 24 Sep 2025 13:50:47 -0400 Subject: [PATCH] fix incorrect toolbelt in delta cargo (#30469) * fix incorrect toolbelt in delta cargo * fix splashscreen_sandbox.dmm --- .../EventStructures/splashscreen_sandbox.dmm | 20 +++++++++---------- _maps/map_files/stations/deltastation.dmm | 2 +- tools/maplint/lints/base_toolbelt.yml | 3 +++ 3 files changed, 14 insertions(+), 11 deletions(-) create mode 100644 tools/maplint/lints/base_toolbelt.yml diff --git a/_maps/map_files/EventStructures/splashscreen_sandbox.dmm b/_maps/map_files/EventStructures/splashscreen_sandbox.dmm index c4ceae28d7f..4bacce92eed 100644 --- a/_maps/map_files/EventStructures/splashscreen_sandbox.dmm +++ b/_maps/map_files/EventStructures/splashscreen_sandbox.dmm @@ -154,16 +154,16 @@ /turf/simulated/floor/grass, /area/start) "r" = ( -/obj/item/storage/belt, -/obj/item/storage/belt, -/obj/item/storage/belt, -/obj/item/storage/belt, -/obj/item/storage/belt, -/obj/item/storage/belt, -/obj/item/storage/belt, -/obj/item/storage/belt, -/obj/item/storage/belt, -/obj/item/storage/belt, +/obj/item/storage/belt/utility, +/obj/item/storage/belt/utility, +/obj/item/storage/belt/utility, +/obj/item/storage/belt/utility, +/obj/item/storage/belt/utility, +/obj/item/storage/belt/utility, +/obj/item/storage/belt/utility, +/obj/item/storage/belt/utility, +/obj/item/storage/belt/utility, +/obj/item/storage/belt/utility, /turf/simulated/floor/grass, /area/start) "s" = ( diff --git a/_maps/map_files/stations/deltastation.dmm b/_maps/map_files/stations/deltastation.dmm index 1017d5c8df8..8bc75c9fd6a 100644 --- a/_maps/map_files/stations/deltastation.dmm +++ b/_maps/map_files/stations/deltastation.dmm @@ -11212,7 +11212,7 @@ pixel_x = 3; pixel_y = 3 }, -/obj/item/storage/belt, +/obj/item/storage/belt/utility, /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, diff --git a/tools/maplint/lints/base_toolbelt.yml b/tools/maplint/lints/base_toolbelt.yml new file mode 100644 index 00000000000..924a471fa39 --- /dev/null +++ b/tools/maplint/lints/base_toolbelt.yml @@ -0,0 +1,3 @@ +help: 'The base belt type is not mappable. For standard tool belts, use /obj/item/storage/belt/utility.' +=/obj/item/storage/belt: + banned: true