[MIRROR] Fixes gibtonite explosions producing flames and flashes [MDB IGNORE] (#22964)

* Fixes gibtonite explosions producing flames and flashes (#77344)

* Fixes gibtonite explosions producing flames and flashes

---------

Co-authored-by: Sealed101 <cool.bullseye@yandex.ru>
This commit is contained in:
SkyratBot
2023-08-09 16:54:10 -04:00
committed by GitHub
co-authored by Sealed101
parent 5486304676
commit 511662fa78
2 changed files with 5 additions and 5 deletions
+3 -3
View File
@@ -329,11 +329,11 @@ GLOBAL_LIST_INIT(sand_recipes, list(\
if(primed)
switch(quality)
if(GIBTONITE_QUALITY_HIGH)
explosion(src, devastation_range = 2, heavy_impact_range = 4, light_impact_range = 9, adminlog = notify_admins)
explosion(src, devastation_range = 2, heavy_impact_range = 4, light_impact_range = 9, flame_range = 0, flash_range = 0, adminlog = notify_admins)
if(GIBTONITE_QUALITY_MEDIUM)
explosion(src, devastation_range = 1, heavy_impact_range = 2, light_impact_range = 5, adminlog = notify_admins)
explosion(src, devastation_range = 1, heavy_impact_range = 2, light_impact_range = 5, flame_range = 0, flash_range = 0, adminlog = notify_admins)
if(GIBTONITE_QUALITY_LOW)
explosion(src, heavy_impact_range = 1, light_impact_range = 3, adminlog = notify_admins)
explosion(src, heavy_impact_range = 1, light_impact_range = 3, flame_range = 0, flash_range = 0, adminlog = notify_admins)
qdel(src)
/obj/item/gibtonite/throw_impact(atom/hit_atom, datum/thrownthing/throwingdatum)