tweaked values (#18296)

This commit is contained in:
Will
2025-08-19 22:42:42 +02:00
committed by GitHub
parent e94626acc3
commit 85c8f0253d
@@ -13,8 +13,8 @@
var/atom/target = null
var/open_panel = 0
var/image_overlay = null
var/blast_dev = -1
var/blast_heavy = -1
var/blast_dev = 3
var/blast_heavy = 1
var/blast_light = 2
var/blast_flash = 3
@@ -106,7 +106,7 @@
if(open_panel)
if(istype(I, /obj/item/stock_parts/micro_laser))
var/obj/item/stock_parts/SP = I
var/new_blast_power = max(1, round(SP.rating / 2) + 1)
var/new_blast_power = max(1, round(SP.rating * 2) + 1)
if(new_blast_power > blast_heavy)
to_chat(user, span_notice("You install \the [I] into \the [src]."))
user.drop_from_inventory(I)