Fixed .xpshopbuy having mixed up arguments for frames and bgs

This commit is contained in:
Kwoth
2022-08-17 22:02:36 +02:00
parent df1a775fec
commit 7d9e456fe5
2 changed files with 11 additions and 11 deletions

View File

@@ -13,6 +13,6 @@ public class XpShopOwnedItem : DbEntity
public enum XpShopItemType public enum XpShopItemType
{ {
Background, Background = 0,
Frame, Frame = 1,
} }

View File

@@ -334,15 +334,15 @@ public partial class Xp : NadekoModule<XpService>
public enum XpShopInputType public enum XpShopInputType
{ {
Backgrounds = 1, Backgrounds = 0,
B = 1, B = 0,
Bg = 1, Bg = 0,
Bgs = 1, Bgs = 0,
Frames = 0, Frames = 1,
F = 0, F = 1,
Fr = 0, Fr = 1,
Frs = 0, Frs = 1,
Fs = 0, Fs = 1,
} }
[Cmd] [Cmd]