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