Skip to content

Commit

Permalink
turns oxygentank into fueltank fixes issue #5512 (#5524)
Browse files Browse the repository at this point in the history
# About the pull request
fixes issue #5512 by turning oxygentank into fueltank subclass

# Explain why it's good for the game

having to move oxygen into custom tank to fill custom flamethrowertank
is a bug


# Testing Photographs and Procedure
<details>
<summary>Screenshots & Videos</summary>

Put screenshots and videos here with an empty line between the
screenshots and the `<details>` tags.

</details>


# Changelog

:cl:
fix: allows custom flamethrower tanks to be filled directly from
oxygentank
/:cl:

---------

Co-authored-by: vincibrv <[email protected]>
  • Loading branch information
cuberound and uuuuhuuuu committed Jan 25, 2024
1 parent fc82825 commit 9c89e49
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
14 changes: 7 additions & 7 deletions code/game/objects/structures/reagent_dispensers.dm
Original file line number Diff line number Diff line change
Expand Up @@ -148,13 +148,6 @@
icon_state = "ammoniatank"
chemical = "ammonia"

/obj/structure/reagent_dispensers/oxygentank
name = "oxygentank"
desc = "An oxygen tank"
icon = 'icons/obj/objects.dmi'
icon_state = "oxygentank"
chemical = "oxygen"

/obj/structure/reagent_dispensers/acidtank
name = "sulfuric acid tank"
desc = "A sulfuric acid tank"
Expand Down Expand Up @@ -394,6 +387,13 @@
icon_state = "hydrogentank"
chemical = "hydrogen"

/obj/structure/reagent_dispensers/fueltank/oxygentank
name = "oxygentank"
desc = "An oxygen tank"
icon = 'icons/obj/objects.dmi'
icon_state = "oxygentank"
chemical = "oxygen"

/obj/structure/reagent_dispensers/fueltank/custom
name = "reagent tank"
desc = "A reagent tank, typically used to store large quantities of chemicals."
Expand Down
2 changes: 1 addition & 1 deletion maps/map_files/FOP_v3_Sciannex/Fiorina_SciAnnex.dmm
Original file line number Diff line number Diff line change
Expand Up @@ -24439,7 +24439,7 @@
/area/fiorina/tumor/ice_lab)
"oIg" = (
/obj/structure/platform,
/obj/structure/reagent_dispensers/oxygentank{
/obj/structure/reagent_dispensers/fueltank/oxygentank{
layer = 2.6
},
/turf/open/floor/prison,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@
},
/area/template_noop)
"H" = (
/obj/structure/reagent_dispensers/oxygentank,
/obj/structure/reagent_dispensers/fueltank/oxygentank,
/turf/open/space,
/area/template_noop)
"I" = (
Expand Down
4 changes: 2 additions & 2 deletions maps/map_files/USS_Almayer/USS_Almayer.dmm
Original file line number Diff line number Diff line change
Expand Up @@ -79422,7 +79422,7 @@
},
/area/almayer/medical/lower_medical_lobby)
"xgm" = (
/obj/structure/reagent_dispensers/oxygentank,
/obj/structure/reagent_dispensers/fueltank/oxygentank,
/turf/open/floor/almayer{
icon_state = "plate"
},
Expand Down Expand Up @@ -80874,7 +80874,7 @@
},
/area/almayer/hull/upper_hull/u_m_p)
"xHS" = (
/obj/structure/reagent_dispensers/oxygentank{
/obj/structure/reagent_dispensers/fueltank/oxygentank{
anchored = 1
},
/obj/effect/decal/warning_stripes{
Expand Down

0 comments on commit 9c89e49

Please sign in to comment.