For v1.1.4.

Fixed the usage of NPCLib as a plugin dependency without shading it.
This commit is contained in:
JitseB
2018-05-20 10:13:58 +02:00
parent d3af2fa9ae
commit 15335c24f1
16 changed files with 18 additions and 122 deletions
+2 -1
View File
@@ -20,6 +20,7 @@ Alternatively, you can help the project by starring the repository or telling ot
## Usage
It is recommended to shade `NPCLib-API-v*.jar` into your plugin.
Alternatively, you may put `NPCLib-Plugin-v*.jar` under your `plugins` folder. By using this option, you do not need to shade the API JAR anymore. Though, do not forget to add `NPCLib` as a dependency in your `plugin.yml`!
You can download the latest release [here](https://github.com/JitseB/NPCLib/releases/latest).
@@ -41,7 +42,7 @@ You can download the latest release [here](https://github.com/JitseB/NPCLib/rele
npc.show(player);
npc.hide(player);
// If you don't use the NPC anymore, destroy the NPC accordingly.
// If you do not use the NPC anymore, destroy the NPC accordingly.
npc.destroy();
```