chore: removed "Difficutly Increased" message

This commit is contained in:
Sara Gerretsen 2026-02-02 22:57:23 +01:00
parent 335e782654
commit eddbb0d9cf

View file

@ -71,7 +71,6 @@ void MapRegion::raise_difficulty(double amount) {
if (this->hunt_phase) { if (this->hunt_phase) {
return; return;
} }
print_line("Difficutly Increased");
int const old_trunc{ (int)Math::floor(this->difficulty) }; int const old_trunc{ (int)Math::floor(this->difficulty) };
this->difficulty += amount; this->difficulty += amount;
int const new_trunc{ (int)Math::floor(this->difficulty) }; int const new_trunc{ (int)Math::floor(this->difficulty) };