diff --git a/code/modules/reagents/reagent_dispenser.dm b/code/modules/reagents/reagent_dispenser.dm
index 4f4277980e0..da9f408a7c3 100644
--- a/code/modules/reagents/reagent_dispenser.dm
+++ b/code/modules/reagents/reagent_dispenser.dm
@@ -85,12 +85,13 @@
boom()
/obj/structure/reagent_dispensers/fueltank/boom(var/rigtrigger = FALSE) // Prevent case where someone who rigged the tank is blamed for the explosion when the rig isn't what triggered the explosion
- if(rigtrigger == TRUE) // If the explosion is triggered by an assembly holder
- message_admins("A fueltank, last rigged by [lastrigger], exploded at [COORD(loc)]") // Then admin is informed of the last person who rigged the fuel tank
- log_game("A fueltank, last rigged by [lastrigger], exploded at [COORD(loc)]")
- investigate_log("A fueltank, last rigged by [lastrigger], exploded at [COORD(loc)]", INVESTIGATE_BOMB)
- explosion(loc, 0, 1, 5, 7, 10, flame_range = 5)
- qdel(src)
+ if(reagents.has_reagent("fuel"))
+ if(rigtrigger == TRUE) // If the explosion is triggered by an assembly holder
+ message_admins("A fueltank, last rigged by [lastrigger], exploded at [COORD(loc)]") // Then admin is informed of the last person who rigged the fuel tank
+ log_game("A fueltank, last rigged by [lastrigger], exploded at [COORD(loc)]")
+ investigate_log("A fueltank, last rigged by [lastrigger], exploded at [COORD(loc)]", INVESTIGATE_BOMB)
+ explosion(loc, 0, 1, 5, 7, 10, flame_range = 5)
+ qdel(src)
/obj/structure/reagent_dispensers/fueltank/blob_act()
boom()
diff --git a/html/changelog.html b/html/changelog.html
index 036bf01e24b..b224258d3f4 100644
--- a/html/changelog.html
+++ b/html/changelog.html
@@ -61,6 +61,15 @@
- Fixes a few edge cases of being able to create immunity to a few diseases
- Adds suspiciously Voxy outfit to the game
+ - Lack of breathing will render you unable to speak
+
+ MINIMAN10000 updated:
+
+ - Boom function now properly checks for fuel
+
+ Tayyyyyyy, TaukaUsanake updated:
+
+ - pAI units now have access to a flashlight module, which can be obtained with 5 RAM points.
02 February 2019
diff --git a/html/changelogs/.all_changelog.yml b/html/changelogs/.all_changelog.yml
index 71aa56d60ac..b156dfa211f 100644
--- a/html/changelogs/.all_changelog.yml
+++ b/html/changelogs/.all_changelog.yml
@@ -9003,3 +9003,9 @@ DO NOT EDIT THIS FILE BY HAND! AUTOMATICALLY GENERATED BY ss13_genchangelog.py.
Fox McCloud:
- bugfix: Fixes a few edge cases of being able to create immunity to a few diseases
- rscadd: Adds suspiciously Voxy outfit to the game
+ - tweak: Lack of breathing will render you unable to speak
+ MINIMAN10000:
+ - bugfix: Boom function now properly checks for fuel
+ Tayyyyyyy, TaukaUsanake:
+ - rscadd: pAI units now have access to a flashlight module, which can be obtained
+ with 5 RAM points.
diff --git a/html/changelogs/AutoChangeLog-pr-10800.yml b/html/changelogs/AutoChangeLog-pr-10800.yml
deleted file mode 100644
index 1b8288356ab..00000000000
--- a/html/changelogs/AutoChangeLog-pr-10800.yml
+++ /dev/null
@@ -1,4 +0,0 @@
-author: "Fox McCloud"
-delete-after: True
-changes:
- - tweak: "Lack of breathing will render you unable to speak"
diff --git a/html/changelogs/AutoChangeLog-pr-10817.yml b/html/changelogs/AutoChangeLog-pr-10817.yml
deleted file mode 100644
index 20f365cb393..00000000000
--- a/html/changelogs/AutoChangeLog-pr-10817.yml
+++ /dev/null
@@ -1,4 +0,0 @@
-author: "Tayyyyyyy, TaukaUsanake"
-delete-after: True
-changes:
- - rscadd: "pAI units now have access to a flashlight module, which can be obtained with 5 RAM points."