| 226 | } |
| 227 | |
| 228 | void RoomHatchery::handleCreatureUsingAbsorbedRoom(Creature& creature) |
| 229 | { |
| 230 | creature.clearDestinations(EntityAnimation::idle_anim, true, true); |
| 231 | creature.clearActionQueue(); |
| 232 | creature.pushAction(Utils::make_unique<CreatureActionSearchFood>(creature, true)); |
| 233 | } |
| 234 | |
| 235 | void RoomHatchery::creatureDropped(Creature& creature) |
| 236 | { |
nothing calls this directly
no test coverage detected