Min fixes

This commit is contained in:
Angel Ortigosa Perez
2025-10-26 20:20:14 +01:00
parent e4c2000a4a
commit 46b7b99abb
11 changed files with 69 additions and 59 deletions

View File

@@ -68,16 +68,15 @@ void ScavTrap::attack(const std::string &target)
void ScavTrap::guardGate()
{
if (this->guardGate)
if (!this->guarding_gate)
{
this->guardGate = false;
std::cout << "ScavTrap " << this->name << " is not in Gate keeper mode"
this->guarding_gate = true;
std::cout << "ScavTrap " << this->name << " is in Gate keeper mode"
<< std::endl;
}
else
{
this->guardGate = true;
std::cout << "ScavTrap " << this->name << " is in Gate keeper mode"
std::cout << "ScavTrap " << this->name << " is already in Gate keeper mode"
<< std::endl;
}

View File

@@ -20,7 +20,7 @@
class ScavTrap : public ClapTrap
{
private:
boold guarding_gate;
bool guarding_gate;
public:
ScavTrap();
ScavTrap(std::string name);