Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Kills combat knife crate and replaces it with survival knives #2736

Merged
merged 4 commits into from
Feb 26, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions code/modules/cargo/packs/sec_supply.dm
Original file line number Diff line number Diff line change
Expand Up @@ -63,13 +63,13 @@
/obj/item/shield/riot)
crate_name = "riot shields crate"

/datum/supply_pack/sec_supply/combatknives
name = "Combat Knives Crate"
desc = "Contains three sharpened combat knives. Each knife guaranteed to fit snugly inside any galactic-standard boot."
cost = 2500
contains = list(/obj/item/kitchen/knife/combat,
/obj/item/kitchen/knife/combat,
/obj/item/kitchen/knife/combat)
/datum/supply_pack/sec_supply/survknives
name = "Survival Knives Crate"
desc = "Contains three sharpened survival knives. Each knife guaranteed to fit snugly inside any galactic-standard boot."
cost = 500
contains = list(/obj/item/kitchen/knife/combat/survival,
/obj/item/kitchen/knife/combat/survival,
/obj/item/kitchen/knife/combat/survival)
crate_name = "combat knife crate"

/datum/supply_pack/sec_supply/fire
Expand Down
Loading