From 65fde63898a9401da31eb59adeb9c7a9c069501f Mon Sep 17 00:00:00 2001 From: Sakimori Date: Thu, 25 Feb 2021 19:30:36 -0500 Subject: [PATCH] made meteor shower not 100% --- weather.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/weather.py b/weather.py index a1f7bf1..7e076a0 100644 --- a/weather.py +++ b/weather.py @@ -297,7 +297,7 @@ class MeteorShower(Weather): def __init__(self, game): self.name = "Meteor Shower" self.emoji = "🌠" - self.activation_chance = 1 + self.activation_chance = 0.13 def activate(self, game, result): if random.random() < self.activation_chance and game.occupied_bases() != {}: