From: svennergr Date: Thu, 31 Dec 2020 01:31:03 +0000 (+0100) Subject: fixed wrong key to paths of libaries in markdownfile (#223) X-Git-Tag: v1.2.2 X-Git-Url: https://git.deb.at/?a=commitdiff_plain;h=2ebd804d2818b4a4b4aeee7f13325b9a50e6896e;p=rhonda%2Fimpostor.git fixed wrong key to paths of libaries in markdownfile (#223) Signed-off-by: Sven Großmann Co-authored-by: Sven Großmann --- diff --git a/docs/Writing-a-plugin.md b/docs/Writing-a-plugin.md index a7ad21b..172ac5f 100644 --- a/docs/Writing-a-plugin.md +++ b/docs/Writing-a-plugin.md @@ -314,14 +314,14 @@ Constantly copying the plugin dll to your server directory can be pretty annoyin "Paths": [ "D:\\Projects\\Impostor\\src\\Impostor.Plugins.Example\\bin\\Debug\\netstandard2.1" ], - "Libraries": [] + "LibraryPaths": [] } } ``` ### Using other libraries -Sometimes you need to use libraries that the original Impostor server does not provide. The dll files of these libraries must be placed in the `libraries` folder next to the server executable. You could also provide them by modifying the `PluginLoader.Libraries` option in the `config.json`, similarly to the `PluginLoader.Paths` option. +Sometimes you need to use libraries that the original Impostor server does not provide. The dll files of these libraries must be placed in the `libraries` folder next to the server executable. You could also provide them by modifying the `PluginLoader.LibraryPaths` option in the `config.json`, similarly to the `PluginLoader.Paths` option. ### Impostor versions