Skip to content

Commit

Permalink
Foundation revolver is now a medium subtype (#544)
Browse files Browse the repository at this point in the history
  • Loading branch information
EgorDinamit authored Feb 11, 2024
1 parent ed432fd commit b8c6c11
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions code/modules/codex/entries/psionics.dm
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
display_name = "Cuchulain Foundation"
associated_strings = list("Cuchulain", "Foundation")
associated_paths = list(
/obj/item/storage/briefcase/foundation,
/obj/item/gun/projectile/revolver/foundation,
/obj/item/storage/briefcase/foundation,
/obj/item/gun/projectile/revolver/medium/foundation,
/obj/item/card/id/foundation,
/obj/item/card/id/foundation_civilian,
/obj/item/clothing/suit/storage/toggle/labcoat/foundation,
Expand Down
6 changes: 3 additions & 3 deletions code/modules/psionics/equipment/foundation_weapon.dm
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
/obj/item/gun/projectile/revolver/foundation
/obj/item/gun/projectile/revolver/medium/foundation
name = "\improper Foundation revolver"
icon = 'icons/obj/guns/foundation.dmi'
icon_state = "foundation"
desc = "The CF 'Troubleshooter', a compact plastic-composite weapon designed for concealed carry by Cuchulain Foundation field agents. Smells faintly of copper."
ammo_type = /obj/item/ammo_casing/revolver/medium/nullglass

/obj/item/gun/projectile/revolver/foundation/disrupts_psionics()
/obj/item/gun/projectile/revolver/medium/foundation/disrupts_psionics()
return FALSE

/obj/item/storage/briefcase/foundation
Expand All @@ -19,7 +19,7 @@

/obj/item/storage/briefcase/foundation/revolver/New()
..()
new /obj/item/gun/projectile/revolver/foundation(src)
new /obj/item/gun/projectile/revolver/medium/foundation(src)
new /obj/item/ammo_magazine/speedloader/medium/nullglass(src)
new /obj/item/ammo_magazine/speedloader/medium/nullglass(src)
new /obj/item/ammo_magazine/speedloader/medium/nullglass(src)
Expand Down

0 comments on commit b8c6c11

Please sign in to comment.