From fae2bc9de57e9e82b06823046cacb615ea878a5d Mon Sep 17 00:00:00 2001 From: Jesse Plamondon-Willard Date: Wed, 16 May 2018 16:25:29 -0400 Subject: [PATCH] fix assembly mapping error on Linux/Mac (#514) --- src/SMAPI/Constants.cs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/SMAPI/Constants.cs b/src/SMAPI/Constants.cs index 9232d648..cf958ae0 100644 --- a/src/SMAPI/Constants.cs +++ b/src/SMAPI/Constants.cs @@ -125,8 +125,7 @@ namespace StardewModdingAPI }; targetAssemblies = new[] { - typeof(Netcode.NetBool).Assembly, - typeof(StardewValley.Game1).Assembly, + typeof(StardewValley.Game1).Assembly, // note: includes Netcode types on Linux/Mac typeof(Microsoft.Xna.Framework.Vector2).Assembly }; break;