Coverage report for ai


src/
File: src/bots/verifications/IsConcernedByIncantation.cpp
Date: 2024-06-25 10:57:00
Lines:
0/2
0.0%
Functions:
0/1
0.0%
Branches:
0/6
0.0%

Line Branch Exec Source
1 /*
2 ** EPITECH PROJECT, 2024
3 ** zappy/ai/verification
4 ** File description:
5 ** IsConcernedByIncantation.hpp
6 */
7
8 #include "../ABotPattern.hpp"
9
10 bool ABotPattern::isConcernedByIncantation()
11 {
12 return (_state.lastAction.action == INCANTATION || _state.metadata["wait_incant"] == "true");
13 }
14