diff --git a/code/defines/gases.dm b/code/defines/gases.dm index 74cb0d93797..14b5e3a7c0b 100644 --- a/code/defines/gases.dm +++ b/code/defines/gases.dm @@ -51,3 +51,4 @@ tile_overlay = "sleeping_agent" overlay_limit = 1 + flags = XGM_GAS_OXIDIZER \ No newline at end of file diff --git a/code/modules/reagents/Chemistry-Reagents/Chemistry-Reagents-Toxins.dm b/code/modules/reagents/Chemistry-Reagents/Chemistry-Reagents-Toxins.dm index d9f804e2502..aa4d62fc07c 100644 --- a/code/modules/reagents/Chemistry-Reagents/Chemistry-Reagents-Toxins.dm +++ b/code/modules/reagents/Chemistry-Reagents/Chemistry-Reagents-Toxins.dm @@ -69,7 +69,7 @@ return T.assume_gas("phoron", ceil(volume/2), T20C) for(var/turf/simulated/floor/target_tile in range(0,T)) - target_tile.assume_gas("volatile_fuel", volume/2, 400+T0C) + target_tile.assume_gas("phoron", volume/2, 400+T0C) spawn (0) target_tile.hotspot_expose(700, 400) remove_self(volume) diff --git a/html/changelogs/chaoko99-FUCKINGSNOWFLAKES.yml b/html/changelogs/chaoko99-FUCKINGSNOWFLAKES.yml new file mode 100644 index 00000000000..2d3f7ac454b --- /dev/null +++ b/html/changelogs/chaoko99-FUCKINGSNOWFLAKES.yml @@ -0,0 +1,37 @@ +################################ +# Example Changelog File +# +# Note: This file, and files beginning with ".", and files that don't end in ".yml" will not be read. If you change this file, you will look really dumb. +# +# Your changelog will be merged with a master changelog. (New stuff added only, and only on the date entry for the day it was merged.) +# When it is, any changes listed below will disappear. +# +# Valid Prefixes: +# bugfix +# wip (For works in progress) +# tweak +# soundadd +# sounddel +# rscadd (general adding of nice things) +# rscdel (general deleting of nice things) +# imageadd +# imagedel +# maptweak +# spellcheck (typo fixes) +# experiment +################################# + +# Your name. +author: Chaoko99 + +# Optional: Remove this file after generating master changelog. Useful for PR changelogs that won't get used again. +delete-after: True + +# Any changes you've made. See valid prefix list above. +# INDENT WITH TWO SPACES. NOT TABS. SPACES. +# SCREW THIS UP AND IT WON'T WORK. +# Also, all entries are changed into a single [] after a master changelog generation. Just remove the brackets when you add new entries. +# Please surround your changes in double quotes ("), as certain characters otherwise screws up compiling. The quotes will not show up in the changelog. +changes: + - rscadd: "Nitrous Oxide is now an oxidizer." + - rscdel: "Removed all instances of Volatile Fuel ever being simulated. To devs: It still exists. Please, for the love of god, only use it with assume_gas."