summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJesse Plamondon-Willard <github@jplamondonw.com>2018-05-16 16:25:29 -0400
committerJesse Plamondon-Willard <github@jplamondonw.com>2018-05-16 16:25:29 -0400
commitfae2bc9de57e9e82b06823046cacb615ea878a5d (patch)
tree275e70a316c193f6d3d09ada417a017348f11cae /src
parent5c1068c30ca0a030f924c05d7bae603e887e5252 (diff)
downloadSMAPI-fae2bc9de57e9e82b06823046cacb615ea878a5d.tar.gz
SMAPI-fae2bc9de57e9e82b06823046cacb615ea878a5d.tar.bz2
SMAPI-fae2bc9de57e9e82b06823046cacb615ea878a5d.zip
fix assembly mapping error on Linux/Mac (#514)
Diffstat (limited to 'src')
-rw-r--r--src/SMAPI/Constants.cs3
1 files changed, 1 insertions, 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;