Skip to content

Commit

Permalink
Lower prob of sampled plant
Browse files Browse the repository at this point in the history
  • Loading branch information
MikeKuwait committed Aug 24, 2023
1 parent 960f1c2 commit c0ac14f
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions code/modules/hydroponics/hydro_tray.dm
Original file line number Diff line number Diff line change
Expand Up @@ -189,8 +189,11 @@
return

// Advance plant age.
// If the plant is sampled, lower the probability of its growth rate.
if(!sampled)
if(prob(30)) age += 1 * HYDRO_SPEED_MULTIPLIER
else if(sampled)
if(prob(10)) age += 1 * HYDRO_SPEED_MULTIPLIER

//Highly mutable plants have a chance of mutating every tick.
if(seed.immutable == -1)
Expand Down

0 comments on commit c0ac14f

Please sign in to comment.