Skip to content

Commit

Permalink
406
Browse files Browse the repository at this point in the history
  • Loading branch information
Very-Soft committed Nov 5, 2023
1 parent 1430764 commit 7d99dab
Show file tree
Hide file tree
Showing 7 changed files with 114,203 additions and 15,059 deletions.
18 changes: 10 additions & 8 deletions code/game/turfs/flooring/seasonal.dm
Original file line number Diff line number Diff line change
Expand Up @@ -74,8 +74,8 @@ var/world_time_day
/obj/structure/flora/ausbushes/ywflowers,
/obj/structure/flora/mushroom
)

grass_chance = 30
if(grass_chance)
grass_chance = 30
if("summer")
tree_types = list(
/obj/structure/flora/tree/bigtree,
Expand Down Expand Up @@ -130,9 +130,10 @@ var/world_time_day
/obj/structure/flora/pumpkin,
/obj/structure/flora/ausbushes
)

grass_chance = 10
animal_chance = 0.25
if(grass_chance)
grass_chance = 10
if(animal_chance)
animal_chance = 0.25
if("winter")
grass_chance = 0
tree_types = list(
Expand Down Expand Up @@ -162,9 +163,10 @@ var/world_time_day
/obj/structure/flora/grass/green,
/obj/structure/flora/bush
)

grass_chance = 1
animal_chance = 0.1
if(grass_chance)
grass_chance = 1
if(animal_chance)
animal_chance = 0.1


if(tree_chance && prob(tree_chance) && !check_density())
Expand Down
Loading

0 comments on commit 7d99dab

Please sign in to comment.