From 3713c4d20ccd9742611c1d6a8a341aa57910052a Mon Sep 17 00:00:00 2001 From: Slendy Date: Wed, 29 Mar 2023 21:47:08 -0500 Subject: [PATCH] Update lucky dip description --- .../Types/Categories/LuckyDipCategory.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ProjectLighthouse.Servers.GameServer/Types/Categories/LuckyDipCategory.cs b/ProjectLighthouse.Servers.GameServer/Types/Categories/LuckyDipCategory.cs index 651af049..32bd4576 100644 --- a/ProjectLighthouse.Servers.GameServer/Types/Categories/LuckyDipCategory.cs +++ b/ProjectLighthouse.Servers.GameServer/Types/Categories/LuckyDipCategory.cs @@ -11,7 +11,7 @@ namespace LBPUnion.ProjectLighthouse.Servers.GameServer.Types.Categories; public class LuckyDipCategory : Category { public override string Name { get; set; } = "Lucky Dip"; - public override string Description { get; set; } = "Randomized uploaded content"; + public override string Description { get; set; } = "A random selection of content"; public override string IconHash { get; set; } = "g820605"; public override string Endpoint { get; set; } = "lbp2luckydip"; public override SlotEntity? GetPreviewSlot(DatabaseContext database) => database.Slots.Where(s => s.Type == SlotType.User).OrderByDescending(_ => EF.Functions.Random()).FirstOrDefault();