summaryrefslogtreecommitdiff
path: root/src/game/unit_scientist.cpp
diff options
context:
space:
mode:
authorPaweł Redman <pawel.redman@gmail.com>2018-04-26 12:32:12 +0200
committerPaweł Redman <pawel.redman@gmail.com>2018-04-26 12:32:12 +0200
commit193f7a17d2e4ab99ed0cd909c696c3f0b9833041 (patch)
tree5a22f5a33396fcf8a29db7c5473364d93c275cdf /src/game/unit_scientist.cpp
parent86872106dc9aa960b417b5ff7f4a175c81058411 (diff)
Rebalance the game again.
Diffstat (limited to 'src/game/unit_scientist.cpp')
-rw-r--r--src/game/unit_scientist.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game/unit_scientist.cpp b/src/game/unit_scientist.cpp
index 129d7fa..8319aaa 100644
--- a/src/game/unit_scientist.cpp
+++ b/src/game/unit_scientist.cpp
@@ -77,7 +77,7 @@ void unit_scientist_t::gather_crystals(void)
goto out;
}
- crystals = game->prng.next() % 100 + 1;
+ crystals = 75;
game->crystals += crystals;
game->interface.print(name + " collected " + std::to_string(crystals) + " " +
(crystals == 1 ? "crystal" : "crystals"));