mirror of
https://github.com/LBPUnion/ProjectLighthouse.git
synced 2025-08-08 12:58:41 +00:00
Update lucky dip description
This commit is contained in:
parent
a603cdb002
commit
3713c4d20c
1 changed files with 1 additions and 1 deletions
|
@ -11,7 +11,7 @@ namespace LBPUnion.ProjectLighthouse.Servers.GameServer.Types.Categories;
|
||||||
public class LuckyDipCategory : Category
|
public class LuckyDipCategory : Category
|
||||||
{
|
{
|
||||||
public override string Name { get; set; } = "Lucky Dip";
|
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 IconHash { get; set; } = "g820605";
|
||||||
public override string Endpoint { get; set; } = "lbp2luckydip";
|
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();
|
public override SlotEntity? GetPreviewSlot(DatabaseContext database) => database.Slots.Where(s => s.Type == SlotType.User).OrderByDescending(_ => EF.Functions.Random()).FirstOrDefault();
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue