diff options
author | Jesse Plamondon-Willard <github@jplamondonw.com> | 2018-05-16 16:25:29 -0400 |
---|---|---|
committer | Jesse Plamondon-Willard <github@jplamondonw.com> | 2018-05-16 16:25:29 -0400 |
commit | fae2bc9de57e9e82b06823046cacb615ea878a5d (patch) | |
tree | 275e70a316c193f6d3d09ada417a017348f11cae /src | |
parent | 5c1068c30ca0a030f924c05d7bae603e887e5252 (diff) | |
download | SMAPI-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.cs | 3 |
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; |