Skip to content

Commit

Permalink
should fix it all?
Browse files Browse the repository at this point in the history
  • Loading branch information
Sadhorizon committed Sep 12, 2024
1 parent dd3f81b commit d1b2a9c
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 22 deletions.
13 changes: 11 additions & 2 deletions _maps/shuttles/syndicate/syndicate_cybersun_kansatsu.dmm
Original file line number Diff line number Diff line change
Expand Up @@ -655,6 +655,7 @@
/obj/item/clothing/gloves/combat,
/obj/item/clothing/mask/gas/syndicate,
/obj/item/clothing/head/HoS/cybersun,
/obj/item/pen/edagger,
/turf/open/floor/plasteel/patterned/brushed,
/area/ship/bridge)
"lP" = (
Expand Down Expand Up @@ -1327,7 +1328,11 @@
/obj/structure/cable/orange{
icon_state = "0-2"
},
/turf/open/floor/carpet/nanoweave/red,
/obj/effect/turf_decal/spline/fancy/opaque/syndiered{
dir = 1
},
/obj/effect/turf_decal/spline/fancy/opaque/syndiered,
/turf/open/floor/plasteel/patterned/brushed,
/area/ship/crew/dorm/dormtwo)
"uq" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
Expand Down Expand Up @@ -2622,7 +2627,11 @@
/obj/effect/spawner/lootdrop/plushie{
pixel_y = 6
},
/turf/open/floor/carpet/nanoweave/red,
/obj/effect/turf_decal/spline/fancy/opaque/syndiered{
dir = 1
},
/obj/effect/turf_decal/spline/fancy/opaque/syndiered,
/turf/open/floor/plasteel/patterned/brushed,
/area/ship/crew/dorm/dormtwo)
"Xw" = (
/turf/closed/wall/mineral/plastitanium/nodiagonal,
Expand Down
4 changes: 2 additions & 2 deletions code/game/objects/items/storage/guncases.dm
Original file line number Diff line number Diff line change
Expand Up @@ -138,8 +138,8 @@
/obj/item/storage/pistolcase/himehabu
/obj/item/storage/pistolcase/himehabu/PopulateContents()
new /obj/item/gun/ballistic/automatic/pistol/himehabu/no_mag(src)
new /obj/item/ammo_box/magazine/m22lr/empty(src)
new /obj/item/ammo_box/magazine/m22lr/empty(src)
new /obj/item/ammo_box/magazine/m22lr_himehabu/empty(src)
new /obj/item/ammo_box/magazine/m22lr_himehabu/empty(src)

/obj/item/storage/pistolcase/candor
/obj/item/storage/pistolcase/candor/PopulateContents()
Expand Down
8 changes: 4 additions & 4 deletions code/game/objects/items/storage/secure.dm
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@
name = "Captain's secure safe"

/obj/item/storage/secure/safe/cybersun/PopulateContents()
new /obj/item/gun/ballistic/revolver/syndicate/no_mag(src)
new /obj/item/ammo_box/a357 (src)
new /obj/item/ammo_box/a357 (src)
new /obj/item/folder/documents/syndicate/cybersun (src)
new /obj/item/gun/ballistic/automatic/pistol/himehabu/no_mag(src)
new /obj/item/ammo_box/magazine/m22lr_himehabu(src)
new /obj/item/ammo_box/magazine/m22lr_himehabu(src)
new /obj/item/folder/documents/syndicate/cybersun(src)
14 changes: 0 additions & 14 deletions code/modules/projectiles/boxes_magazines/external/pistol.dm
Original file line number Diff line number Diff line change
Expand Up @@ -122,17 +122,3 @@
caliber = "9mm"
max_ammo = 4
custom_materials = list(/datum/material/iron = 20000)

/obj/item/ammo_box/magazine/m22lr
name = "pistol magazine (.22 LR)"
desc = "A single-stack handgun magazine designed to chamber .22 LR. It's rather tiny, all things considered."
icon_state = "himehabu_mag-10"
base_icon_state = "himehabu_mag"
ammo_type = /obj/item/ammo_casing/c22lr
caliber = "22lr"
max_ammo = 10
w_class = WEIGHT_CLASS_TINY
multiple_sprites = AMMO_BOX_PER_BULLET

/obj/item/ammo_box/magazine/m22lr/empty
start_empty = TRUE
Original file line number Diff line number Diff line change
Expand Up @@ -358,6 +358,9 @@ EMPTY_GUN_HELPER(automatic/pistol/himehabu)
w_class = WEIGHT_CLASS_TINY
multiple_sprites = AMMO_BOX_PER_BULLET

/obj/item/ammo_box/magazine/m22lr_himehabu/empty
start_empty = TRUE

//########### SMGS ###########//


Expand Down

0 comments on commit d1b2a9c

Please sign in to comment.