Updated to latest Arbutils.
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
@@ -26,9 +26,9 @@ namespace CreatureLib::Battling {
|
||||
: _index(index), _creaturesPerSide(creaturesPerSide), _creatures(creaturesPerSide),
|
||||
_choices(creaturesPerSide), _fillableSlots(creaturesPerSide), _battle(battle) {
|
||||
for (size_t i = 0; i < creaturesPerSide; i++) {
|
||||
_creatures[i] = nullptr;
|
||||
_choices[i] = nullptr;
|
||||
_fillableSlots[i] = true;
|
||||
_creatures.Append(nullptr);
|
||||
_choices.Append(nullptr);
|
||||
_fillableSlots.Append(true);
|
||||
}
|
||||
ResetChoices();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user