This commit is contained in:
Camille Chauvet 2023-08-09 14:15:13 +00:00
parent 21a47da9b5
commit 6669f8b137
2 changed files with 2 additions and 2 deletions

View File

@ -56,5 +56,5 @@ void ScavTrap::attack(const std::string& target)
return;
}
this->_energy--;
std::cerr << "ScavTrap " << this->_name << " attacks " << target << ", causing " << this->_damage << " points of damage" << std::endl;
std::cerr << "ScavTrap " << this->_name << " attacks " << target << ", causing " << this->_damage << " points of damage!" << std::endl;
}

View File

@ -56,5 +56,5 @@ void ScavTrap::attack(const std::string& target)
return;
}
this->_energy--;
std::cerr << "ScavTrap " << this->_name << " attacks " << target << ", causing " << this->_damage << " points of damage" << std::endl;
std::cerr << "ScavTrap " << this->_name << " attacks " << target << ", causing " << this->_damage << " points of damage!" << std::endl;
}