diff --git a/ex02/src/ScavTrap.cpp b/ex02/src/ScavTrap.cpp index d0666b6..e6cd5f2 100644 --- a/ex02/src/ScavTrap.cpp +++ b/ex02/src/ScavTrap.cpp @@ -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; }