From 4f485a0087f30dca52d81bcb51495ccb45c9affe Mon Sep 17 00:00:00 2001 From: Andre_601 Date: Sun, 28 Jan 2024 22:38:15 +0100 Subject: [PATCH] [Wiki] Small typo correction --- docs/developers/creating-a-placeholderexpansion.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/developers/creating-a-placeholderexpansion.md b/docs/developers/creating-a-placeholderexpansion.md index e455e13..1039479 100644 --- a/docs/developers/creating-a-placeholderexpansion.md +++ b/docs/developers/creating-a-placeholderexpansion.md @@ -384,7 +384,7 @@ public class SomeExpansion extends PlaceholderExpansion { Relational Placeholders always start with `rel_` to properly identify them. This means that if you make a relational placeholder called `friends_is_friend` would the full placeholder be `%rel_friends_is_friend%`. /// -Relational PlaceholderExpansions are special in that bthey take two players as input, allowing you to give outputs based on their relation to each other. +Relational PlaceholderExpansions are special in that they take two players as input, allowing you to give outputs based on their relation to each other. To create a relational expansion you will need to implement the [`Relational`][relational] interface into your expansion. You also still need to extend the [`PlaceholderExpansion`][placeholderexpansion] class. Implementing this interface will add the `onPlaceholderRequest(Player, Player, String)` with the first two arguments being the first and second player to use and the third argument being the content after the second `_` and before the final `%` (Or `}` if bracket placeholders are used) in the placeholder. @@ -481,4 +481,4 @@ Don't forget to [register your expansion](#register-your-expansion). /// [placeholderexpansion]: https://github.com/PlaceholderAPI/PlaceholderAPI/blob/master/src/main/java/me/clip/placeholderapi/expansion/PlaceholderExpansion.java -[relational]: https://github.com/PlaceholderAPI/PlaceholderAPI/blob/master/src/main/java/me/clip/placeholderapi/expansion/Relational.java \ No newline at end of file +[relational]: https://github.com/PlaceholderAPI/PlaceholderAPI/blob/master/src/main/java/me/clip/placeholderapi/expansion/Relational.java