diff --git a/src/Bob.cpp b/src/Bob.cpp index 7f105d0..36694ba 100644 --- a/src/Bob.cpp +++ b/src/Bob.cpp @@ -274,6 +274,8 @@ void Game::start() std::random_shuffle(players.begin(), players.end()); this->turn = 0; Player::current_player = players[0]; + trigger_event(BOB_NEXTROUNDEVENT, 0, nullptr, (void *) Player::current_player); + trigger_event(BOB_NEXTTURNEVENT, 0, nullptr, (void *) Player::current_player); } int Game::game_loop() diff --git a/src/Gameplay.hpp b/src/Gameplay.hpp index 8ea2520..19e0e75 100644 --- a/src/Gameplay.hpp +++ b/src/Gameplay.hpp @@ -496,9 +496,9 @@ const std::unordered_map UPGRADE_TEXTS( {Regeneration_1, "Resources yield 2x their base resources per turn."}, {Regeneration_2, "Resources yield 4x their base resources per turn."}, {Regeneration_3, "Resources yield 8x their base resources per turn."}, - {Reproduction_1, "Not used yet!"}, - {Reproduction_2, "Not used yet!"}, - {Reproduction_3, "Not used yet!"} + {Reproduction_1, "Increase the chance for expanding to a new field at the end of the turn by 25%."}, + {Reproduction_2, "Increase the chance for expanding to a new field at the end of the turn by 50%."}, + {Reproduction_3, "Increase the chance for expanding to a new field at the end of the turn by 75%."} } );