Fixes the francisca ammo ordering from operations (#21816)

It was set to give grau ammo. Simply a fix for that.
This commit is contained in:
Casper3667
2026-02-06 21:26:17 +01:00
committed by GitHub
parent c098caad87
commit 255f742a6e
2 changed files with 22 additions and 2 deletions
+16 -2
View File
@@ -511,7 +511,7 @@
description = "A box of 40mm AP ammo for the francisca rotary cannon."
price = 850
items = list(
/obj/item/ship_ammunition/grauwolf_bundle/ap
/obj/item/ship_ammunition/francisca/ap
)
access = ACCESS_CARGO
container_type = "crate"
@@ -525,7 +525,21 @@
description = "A box of 40mm FMJ ammo for a Francisca-type rotary cannon."
price = 800
items = list(
/obj/item/ship_ammunition/grauwolf_bundle
/obj/item/ship_ammunition/francisca
)
access = ACCESS_CARGO
container_type = "crate"
groupable = TRUE
spawn_amount = 1
/singleton/cargo_item/franciscafmjammo
category = "weaponry"
name = "francisca rotary cannon fragmentation ammunition box"
supplier = "zavodskoi"
description = "A box of 40mm fragmentation ammo for a Francisca-type rotary cannon."
price = 800
items = list(
/obj/item/ship_ammunition/francisca/frag
)
access = ACCESS_CARGO
container_type = "crate"
+6
View File
@@ -0,0 +1,6 @@
author: TheGreyWolf
delete-after: True
changes:
- bugfix: "Fixes the francisca being incorrect."