Zamirathe / ZaupFeast

Feast Rocket Plugin for Unturned 3.0
Other
0 stars 10 forks source link

ZaupFeast failed to load, #16 #15

Open Ayria opened 9 years ago

Ayria commented 9 years ago

[Error] Failed to load ZaupFeast, unloading now... :System.MissingFieldException: Field 'SDG.Unturned.LocationNode.name' not found. at Rocket.Core.Plugins.RocketPlugin.LoadPlugin () [0x00000] in :0 [10/3/2015 11:46:01 AM] [Info] Unloading plugin: ZaupFeast [10/3/2015 11:46:01 AM] [Error] Failed to unload ZaupFeast:System.NullReferenceException: Object reference not set to an instance of an object at ZaupFeast.Feast.Unload () [0x00000] in :0 at Rocket.Core.Plugins.RocketPlugin.UnloadPlugin (PluginState state) [0x00000] in :0 at Rocket.Core.Plugins.RocketPlugin.LoadPlugin () [0x00000] in :0

^--Error in log.

This happens with a clean install.

fatboi615 commented 9 years ago
Locs loc = new Locs(n.point, ((LocationNode)n).name);

name is wrong. It has to be with a capital 'n'. So this:

Locs loc = new Locs(n.point, ((LocationNode)n).Name);