Fixed missing return

This commit is contained in:
barelyprofessional
2025-10-03 20:26:17 -05:00
parent 9692ae8c1d
commit a8f43aac9d

View File

@@ -229,6 +229,7 @@ public static class Money
if (gambler != null)
{
_logger.Info($"Gambler entity details: {gambler.Id}, Created: {gambler.Created:o}");
return gambler;
}
if (!createIfNoneExists) return gambler;
var permaBanned = await IsPermanentlyBannedAsync(userId, ct);