From ca821c8e4a5d93f3284fd9c3e31c07907694ab80 Mon Sep 17 00:00:00 2001 From: MrMelbert <51863163+MrMelbert@users.noreply.github.com> Date: Tue, 27 Jan 2026 14:24:01 -0600 Subject: [PATCH] Banners drop centered (#94998) ## About The Pull Request Adds no_pixel_random_drop to banners (so they drop to the middle of the tile) ## Why It's Good For The Game Recent prs reminded me how annoying this is ## Changelog :cl: Melbert qol: Banners drop centered /:cl: --- code/game/objects/items/religion.dm | 1 + 1 file changed, 1 insertion(+) diff --git a/code/game/objects/items/religion.dm b/code/game/objects/items/religion.dm index e820a462ff5..7ccf96f158c 100644 --- a/code/game/objects/items/religion.dm +++ b/code/game/objects/items/religion.dm @@ -10,6 +10,7 @@ lefthand_file = 'icons/mob/inhands/equipment/banners_lefthand.dmi' righthand_file = 'icons/mob/inhands/equipment/banners_righthand.dmi' custom_materials = list(/datum/material/iron = SHEET_MATERIAL_AMOUNT) + item_flags = NO_PIXEL_RANDOM_DROP var/inspiration_available = TRUE //If this banner can be used to inspire crew var/morale_time = 0 var/morale_cooldown = 600 //How many deciseconds between uses