From 2ebd804d2818b4a4b4aeee7f13325b9a50e6896e Mon Sep 17 00:00:00 2001 From: svennergr Date: Thu, 31 Dec 2020 02:31:03 +0100 Subject: [PATCH] fixed wrong key to paths of libaries in markdownfile (#223) MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Sven Großmann Co-authored-by: Sven Großmann --- docs/Writing-a-plugin.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 -- 2.39.5