This commit is contained in:
Camille Chauvet 2023-08-09 14:18:42 +00:00
parent 824e9ca421
commit bc374353a2

View File

@ -52,9 +52,9 @@ void ScavTrap::attack(const std::string& target)
{
if (this->_life == 0 || this->_energy == 0)
{
std::cerr << "error: ScavTrap " << this->_name << " dead" << std::endl;
std::cout << "error: ScavTrap " << this->_name << " dead" << std::endl;
return;
}
this->_energy--;
std::cerr << "ScavTrap " << this->_name << " attacks " << target << ", causing " << this->_damage << " points of damage!" << std::endl;
std::cout << "ScavTrap " << this->_name << " attacks " << target << ", causing " << this->_damage << " points of damage!" << std::endl;
}