override public void Enter(minerAI miner) { if (miner.GetLocation() != (int)Locations.bank) { miner.ChangeLocation((int)Locations.bank); } Debug.Log("Hi banker! I'd like to deposit these sweet old nuggets!"); // Execute(miner); }
override public void Enter(minerAI miner) { if (miner.GetLocation() != (int)Locations.goldmine) { miner.ChangeLocation((int)Locations.goldmine); } Debug.Log("Let's start digging!"); //Execute(miner); }
override public void Enter(minerAI miner) { if (miner.GetLocation() != (int)Locations.saloon) { miner.ChangeLocation((int)Locations.saloon); } Debug.Log("Let's see what this saloon has to offer! My throat is running dry!"); //Execute(miner); }
override public void Enter(minerAI miner) { if (miner.GetLocation() != (int)Locations.home) { miner.ChangeLocation((int)Locations.home); } Debug.Log("Home sweet hom..Finally some rest...time for bed!"); // Execute(miner); }