Skip to content

Commit

Permalink
Reduce Potency Explosive Effectiveness (#8445)
Browse files Browse the repository at this point in the history
Previous, 300 potency = 21x21 grid explosion / 100 potency = 7x7 grid explosion.

Now: 300 potency = 9x9 / 100 potency = 5x5
  • Loading branch information
Mycah142 authored Mar 1, 2024
1 parent 749077a commit f26fed0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion code/modules/hydroponics/seed.dm
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,7 @@

create_spores(origin_turf)

var/flood_dist = min(10,max(1,get_trait(TRAIT_POTENCY)/15))
var/flood_dist = min(10,max(1,get_trait(TRAIT_POTENCY)/50))
var/list/open_turfs = list()
var/list/closed_turfs = list()
var/list/valid_turfs = list()
Expand Down

0 comments on commit f26fed0

Please sign in to comment.