mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-23 05:00:55 +01:00
[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:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user