Fixed Windows build issue.
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
This commit is contained in:
parent
7fd3687564
commit
f602ea9358
|
@ -69,7 +69,7 @@ namespace CreatureLib::Battling {
|
||||||
throw CreatureException("Invalid target requested.");
|
throw CreatureException("Invalid target requested.");
|
||||||
}
|
}
|
||||||
|
|
||||||
bool IsCreatureTarget(Creature* creature) noexcept { return _targets.IndexOf(creature) != -1; }
|
bool IsCreatureTarget(Creature* creature) noexcept { return _targets.IndexOf(creature) != (size_t)-1; }
|
||||||
const List<Creature*>& GetTargets() noexcept { return _targets; }
|
const List<Creature*>& GetTargets() noexcept { return _targets; }
|
||||||
uint8_t GetNumberOfHits() const noexcept { return _numberHits; }
|
uint8_t GetNumberOfHits() const noexcept { return _numberHits; }
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue