Skip to content

Commit

Permalink
Update admin_verbs.dm
Browse files Browse the repository at this point in the history
  • Loading branch information
Lexanx committed Aug 13, 2024
1 parent 25bbc9f commit c2d7ff7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions code/modules/admin/admin_verbs.dm
Original file line number Diff line number Diff line change
Expand Up @@ -541,11 +541,11 @@ var/global/list/admin_verbs_mod = list(
if (null)
return
if("Small Bomb")
explosion(epicenter, 6)
explosion(epicenter, 1, 2, 3, 3)
if("Medium Bomb")
explosion(epicenter, 9)
explosion(epicenter, 2, 3, 4, 4)
if("Big Bomb")
explosion(epicenter, 15)
explosion(epicenter, 3, 5, 7, 5)
if("Custom Bomb")
var/range = input("Explosion radius (in tiles):") as num|null
if (isnull(range) || range <= 0)
Expand Down

0 comments on commit c2d7ff7

Please sign in to comment.