From 178e2565839902e795af01340680ab96a4b3cb55 Mon Sep 17 00:00:00 2001 From: Ske Date: Wed, 24 Jun 2020 16:52:49 +0200 Subject: [PATCH] Fix system guild settings model mismatch --- PluralKit.Core/Models/SystemGuildSettings.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/PluralKit.Core/Models/SystemGuildSettings.cs b/PluralKit.Core/Models/SystemGuildSettings.cs index 88afed36..2da7b4ca 100644 --- a/PluralKit.Core/Models/SystemGuildSettings.cs +++ b/PluralKit.Core/Models/SystemGuildSettings.cs @@ -2,7 +2,8 @@ { public class SystemGuildSettings { - public SystemId Guild { get; } + public ulong Guild { get; } + public SystemId System { get; } public bool ProxyEnabled { get; } = true; public AutoproxyMode AutoproxyMode { get; } = AutoproxyMode.Off;