From 9213fc1192f004f910e6fe03632d66a13fb9816a Mon Sep 17 00:00:00 2001 From: xCodiq <48647037+xCodiq@users.noreply.github.com> Date: Mon, 21 Oct 2019 14:48:00 +0200 Subject: [PATCH] Changed variables of methods using UUID playerUUID instead of String playerUUID --- Addon-Request.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Addon-Request.md b/Addon-Request.md index df942d0..274e9f3 100644 --- a/Addon-Request.md +++ b/Addon-Request.md @@ -40,7 +40,7 @@ Possible values returned: * @return a Location that represents warp sign location, * or null if one is not found. */ -public Location getWarp(UUID playerUUID, String worldName) { +public Location getWarp(String playerUUID, String worldName) { return (Location) new AddonRequestBuilder() .addon("Warps") .label("getWarp") @@ -86,7 +86,7 @@ Possible values returned: * @return {@code true} if player has a warp sign in given world, * otherwise {@code false}. */ -public boolean hasWarp(UUID playerUUID, String worldName) { +public boolean hasWarp(String playerUUID, String worldName) { return (boolean) new AddonRequestBuilder() .addon("Warps") .label("hasWarp")