Skip to content

Commit de8eff1

Browse files
cycler fix + mail token tray for borgs (#4163)
1 parent 3e19e42 commit de8eff1

File tree

3 files changed

+18
-3
lines changed

3 files changed

+18
-3
lines changed

code/modules/projectiles/guns/ballistic/shotgun.dm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@
9898
/obj/item/gun/ballistic/shotgun/automatic/dual_tube/bounty
9999
name = "bounty cycler shotgun"
100100
desc = "An advanced shotgun with two separate magazine tubes. This one shows signs of bounty hunting customization, meaning it likely has a dual rubber shot/fire slug load."
101-
alt_accepted_magazine_type = /obj/item/ammo_box/magazine/internal/shot/tube/fire
101+
//alt_accepted_magazine_type = /obj/item/ammo_box/magazine/internal/shot/tube/fire monkestation edit
102102

103103
/obj/item/gun/ballistic/shotgun/automatic/dual_tube/examine(mob/user)
104104
. = ..()

monkestation/code/modules/cargo/mail/mail_token.dm

Lines changed: 16 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
/obj/item/cargo/mail_token
22
name = "mail token"
3-
desc = "A plastic mail token. Part of a new program to get Nanotrasen cargo employees to deliver mail.\
4-
Can be exported to Central Command for an increase to the budget. The back of the token seems to have barcode on it for handling tips."
3+
desc = "A plastic mail token. Part of a new program to get Nanotrasen cargo employees to deliver mail. It can be exported to Central Command for an increase to the budget. The back of the token seems to have barcode on it for handling tips."
54
icon = 'monkestation/code/modules/cargo/mail/mail.dmi'
65
w_class = WEIGHT_CLASS_TINY
76
icon_state = "mailtoken-1"
@@ -19,3 +18,18 @@
1918
unit_name = "mail token"
2019
k_elasticity = 0
2120
export_types = list(/obj/item/cargo/mail_token)
21+
22+
/obj/item/storage/bag/mail_token_catcher
23+
name = "mail token tray"
24+
desc = "A tray for holding mail tokens."
25+
icon = 'icons/obj/bureaucracy.dmi'
26+
icon_state = "paper_bin0"
27+
28+
/obj/item/storage/bag/mail_token_catcher/Initialize(mapload)
29+
. = ..()
30+
atom_storage.max_total_storage = 200
31+
atom_storage.max_slots = 7
32+
atom_storage.numerical_stacking = FALSE
33+
atom_storage.set_holdable(list(
34+
/obj/item/cargo/mail_token,
35+
))

monkestation/code/modules/cargoborg/code/cargo_module.dm

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
/obj/item/assembly/flash/cyborg,
1515
/obj/item/borg/hydraulic_clamp,
1616
/obj/item/borg/hydraulic_clamp/mail,
17+
/obj/item/storage/bag/mail_token_catcher, //monkestation edit
1718
/obj/item/hand_labeler/cyborg,
1819
/obj/item/dest_tagger,
1920
/obj/item/crowbar/cyborg,

0 commit comments

Comments
 (0)