From aa48557416034480445742486875bfddbd968811 Mon Sep 17 00:00:00 2001 From: Deukhoofd Date: Sat, 26 Mar 2022 11:37:39 +0100 Subject: [PATCH] Fixes syntax error --- src/Battling/Models/BattleSide.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Battling/Models/BattleSide.hpp b/src/Battling/Models/BattleSide.hpp index 4f8b551..1928e9b 100644 --- a/src/Battling/Models/BattleSide.hpp +++ b/src/Battling/Models/BattleSide.hpp @@ -83,7 +83,7 @@ namespace CreatureLib::Battling { if (!_creatures[i].HasValue()) continue; if (_creatures[i].GetValue() == creature) { - return _fillableSlots.At(i) l + return _fillableSlots.At(i); } } }