diff --git a/pom.xml b/pom.xml index cc71f6a..2432be4 100644 --- a/pom.xml +++ b/pom.xml @@ -7,7 +7,7 @@ me.SuperRonanCraft BetterRTP jar - 3.0.1 + 3.0.2 1.8 diff --git a/src/main/java/me/SuperRonanCraft/BetterRTP/player/rtp/RTPPluginValidation.java b/src/main/java/me/SuperRonanCraft/BetterRTP/player/rtp/RTPPluginValidation.java index 1f2db79..a95ad7c 100644 --- a/src/main/java/me/SuperRonanCraft/BetterRTP/player/rtp/RTPPluginValidation.java +++ b/src/main/java/me/SuperRonanCraft/BetterRTP/player/rtp/RTPPluginValidation.java @@ -140,7 +140,7 @@ public class RTPPluginValidation { //Safe locations depending on enabled depende return result; } - // NOT TESTED (2.14.3) + // NOT TESTED (3.0.2) // KingdomsX (v1.10.5.2) // https://www.spigotmc.org/resources/kingdomsx.77670/ private boolean getKingdomsx(Location loc) { diff --git a/src/main/java/me/SuperRonanCraft/BetterRTP/references/worlds/WorldCustom.java b/src/main/java/me/SuperRonanCraft/BetterRTP/references/worlds/WorldCustom.java index f396692..4608413 100644 --- a/src/main/java/me/SuperRonanCraft/BetterRTP/references/worlds/WorldCustom.java +++ b/src/main/java/me/SuperRonanCraft/BetterRTP/references/worlds/WorldCustom.java @@ -11,7 +11,7 @@ import java.util.Map; public class WorldCustom implements RTPWorld { public String world; - private boolean useWorldborder = false; + private boolean useWorldborder; private int CenterX, CenterZ, maxBorderRad, minBorderRad, price; private List Biomes; @@ -21,6 +21,16 @@ public class WorldCustom implements RTPWorld { List> map = config.getMapList("CustomWorlds"); this.world = world; + //Set Defaults + WorldDefault worldDefault = BetterRTP.getInstance().getRTP().defaultWorld; + maxBorderRad = worldDefault.getMaxRad(); + minBorderRad = worldDefault.getMinRad(); + useWorldborder = worldDefault.getUseWorldborder(); + CenterX = worldDefault.getCenterX(); + CenterZ = worldDefault.getCenterZ(); + price = worldDefault.getPrice(); + Biomes = worldDefault.getBiomes(); + //Find Custom World and cache values for (Map m : map) { for (Map.Entry entry : m.entrySet()) { @@ -39,8 +49,9 @@ public class WorldCustom implements RTPWorld { CenterX = Integer.parseInt((test.get("CenterX")).toString()); } if (test.get("CenterZ") != null) { - if (test.get("CenterZ").getClass() == Integer.class) + if (test.get("CenterZ").getClass() == Integer.class) { CenterZ = Integer.parseInt((test.get("CenterZ")).toString()); + } } if (test.get("MaxRadius") != null) { if (test.get("MaxRadius").getClass() == Integer.class) @@ -73,19 +84,18 @@ public class WorldCustom implements RTPWorld { //Integers CenterX = config.getInt(pre + world + ".CenterX"); CenterZ = config.getInt(pre + world + ".CenterZ"); - maxBorderRad = config.getInt(pre + world + ".MaxRadius"); + maxBorderRad = config.getInt(pre + world + ".MaxRadius");*/ if (maxBorderRad <= 0) { - Main.getInstance().getText().sms(Bukkit.getConsoleSender(), + BetterRTP.getInstance().getText().sms(Bukkit.getConsoleSender(), "WARNING! Custom world '" + world + "' Maximum radius of '" + maxBorderRad + "' is not allowed! Set to default value!"); - maxBorderRad = Main.getInstance().getRTP().Default.getMaxRad(); + maxBorderRad = BetterRTP.getInstance().getRTP().defaultWorld.getMaxRad(); } - minBorderRad = config.getInt(pre + world + ".MinRadius"); + //minBorderRad = config.getInt(pre + world + ".MinRadius"); if (minBorderRad <= 0 || minBorderRad >= maxBorderRad) { - Main.getInstance().getText().sms(Bukkit.getConsoleSender(), + BetterRTP.getInstance().getText().sms(Bukkit.getConsoleSender(), "WARNING! Custom world '" + world + "' Minimum radius of '" + minBorderRad + "' is not allowed! Set to default value!"); - minBorderRad = Main.getInstance().getRTP().Default.getMinRad(); + minBorderRad = BetterRTP.getInstance().getRTP().defaultWorld.getMinRad(); } - */ if (BetterRTP.getInstance().getFiles().getType(FileBasics.FILETYPE.ECO).getBoolean("Economy.Enabled")) if (BetterRTP.getInstance().getFiles().getType(FileBasics.FILETYPE.ECO).getBoolean(pre + "Enabled")) { map.clear(); diff --git a/src/main/java/me/SuperRonanCraft/BetterRTP/references/worlds/WorldPlayer.java b/src/main/java/me/SuperRonanCraft/BetterRTP/references/worlds/WorldPlayer.java index f608662..4c5356d 100644 --- a/src/main/java/me/SuperRonanCraft/BetterRTP/references/worlds/WorldPlayer.java +++ b/src/main/java/me/SuperRonanCraft/BetterRTP/references/worlds/WorldPlayer.java @@ -36,8 +36,10 @@ public class WorldPlayer implements RTPWorld { setMinRad(world.getMinRad()); setPrice(price); List list = new ArrayList<>(world.getBiomes()); - if (biomes != null) + if (biomes != null) { + list.clear(); list.addAll(biomes); + } setBiomes(list); if (personal) setupGroup(BetterRTP.getInstance().getRTP().permConfig); diff --git a/src/main/resources/lang/chs.yml b/src/main/resources/lang/chs.yml index b3cd3ec..e9ccacb 100644 --- a/src/main/resources/lang/chs.yml +++ b/src/main/resources/lang/chs.yml @@ -18,7 +18,6 @@ Messages: NoPermission: Basic: '&c对不起,&7你没有权限使用此命令!' World: '&c对不起,&7你并没有被准许在%world%世界传送!' - ## %world% 是被设置为玩家无法随机传送的世界。# DisabledWorld: '&c%world%世界已被禁止使用此命令,&7无法传送!' Cooldown: '&c对不起,&7你需要在&c%time%&7秒后才能传送!' Locked: '&c对不起,&7你已经用完了你的随机传送次数了!' diff --git a/src/main/resources/lang/cht.yml b/src/main/resources/lang/cht.yml index 423aaf2..45ae826 100644 --- a/src/main/resources/lang/cht.yml +++ b/src/main/resources/lang/cht.yml @@ -18,7 +18,6 @@ Messages: NoPermission: Basic: '&c抱歉,&7您沒有權限使用此指令!' World: '&c抱歉,&7您不能在%world%世界傳送!' - ## %world% 是玩家嘗試傳送到但設定已禁用的世界! # DisabledWorld: '&c%world%世界已被禁止使用此指令,&7您無法傳送!' Cooldown: '&c抱歉,&7您需要在&c%time%&7秒後才能嘗試傳送!' Locked: '&cSorry! &7You''ve used up all your RTP''s!' diff --git a/src/main/resources/lang/en.yml b/src/main/resources/lang/en.yml index 3e5939b..1c036dd 100644 --- a/src/main/resources/lang/en.yml +++ b/src/main/resources/lang/en.yml @@ -18,7 +18,6 @@ Messages: NoPermission: Basic: '&cSorry! &7You don''t have permission to use this command!' World: '&cSorry! &7You are not allowed rtp in the %world% world!' - ## %world% is the world the player is in that is disabled to rtp in! # DisabledWorld: '&cDisabled World %world%! &7Could not RTP!' Cooldown: '&cSorry! &7You can''t rtp for another &c%time% &7seconds!' Locked: '&cSorry! &7You''ve used up all your RTP''s!' diff --git a/src/main/resources/lang/fr.yml b/src/main/resources/lang/fr.yml index 89e4bc8..730d4e4 100644 --- a/src/main/resources/lang/fr.yml +++ b/src/main/resources/lang/fr.yml @@ -1,8 +1,7 @@ # Translation author: At0micA55, Mrflo67 (GitHub) Messages: Prefix: '&7[&6BetterRTP&7] ' - ## Placeholders! %x% %y% et %z% sont les coordonées x, y, et z auxquelles le joueur sera téléporté! # - Success: + Success: ## Placeholders! %x% %y% et %z% sont les coordonées x, y, et z auxquelles le joueur sera téléporté! # Paid: '&aTu as été téléporté à&7 x=%x% y=%y% z=%z% pour &c$%price%&7 en &f%attempts% &7tentatives!' Bypass: '&aTu as été téléporté à&7 x=%x% y=%y% z=%z% en &f%attempts% &7tentatives!' Loading: '&aEndroit sûr trouvé! &7Chargement des chunks...' @@ -14,11 +13,11 @@ Messages: Other: Success: '&a%player% a été téléporté à&7 x=%x% y=%y% z=%z% em &f%attempts% &7tentatives!' NotSafe: '&cImpossible de trouver un endroit sûr en %attempts% tentatives! &7%player% n''a pas été téléporté!' +# Biome: '&cSeems like the biome&7 %biome%&c does not exist! &7Try using the tab list!' Reload: '&eConfiguration rechargée avec succès!' NoPermission: Basic: '&cDésolé! &7Il te manque la permission pour utiliser cette commande' World: '&cDésolé! &7Tu n''es pas autorisé à te téléporter dans le monde %world% !' - ## %world% Est le monde dans lequel le joueur est téléporté ! # DisabledWorld: '&cLe monde %world% est désactivé! &7Impossible de se téléporter!' Cooldown: '&cDésolé! &7Tu ne peux pas te téléporter pour encore &c%time% &7secondes!' Locked: '&cSDésolé! &7Vous avez utilisé tous vos RTP''s!' diff --git a/src/main/resources/lang/ja.yml b/src/main/resources/lang/ja.yml index 0304341..46674d9 100644 --- a/src/main/resources/lang/ja.yml +++ b/src/main/resources/lang/ja.yml @@ -18,7 +18,6 @@ Messages: NoPermission: Basic: '&cごめんなさい! &7このコマンドを使う権限がありません!' World: '&cごめんなさい! &7ワールド%world%ではrtpが許可されていません!' - ## DisabledWorld: '&cワールド%world%は無効です! &7RTPできませんでした!' Cooldown: '&cごめんなさい! &7あなたは&c%time%&7秒間RTPできません!' Locked: '&cSorry! &7You''ve used up all your RTP''s!' diff --git a/src/main/resources/lang/pl.yml b/src/main/resources/lang/pl.yml index 0e612e5..dab04e4 100644 --- a/src/main/resources/lang/pl.yml +++ b/src/main/resources/lang/pl.yml @@ -2,31 +2,24 @@ Messages: Prefix: '&7[&6BetterRTP&7] ' Success: - Paid: '&aZostałeś przeniesiony do&7 x=%x% y=%y% z=%z% za &c$%price%&7 w &f%attempts% - &7podejściach!' + Paid: '&aZostałeś przeniesiony do&7 x=%x% y=%y% z=%z% za &c$%price%&7 w &f%attempts% &7podejściach!' Bypass: '&aZostałeś przeniesiony do&7 x=%x% y=%y% z=%z% w &f%attempts% &podejściach' Loading: '&aZnaleziono bezpieczną strefę! &7Ładowanie chunków...' Teleport: '&aTeleportuję... &fprosze czekać aż znajdziemy bezpieczną lokację!' Failed: - Price: '&cNie udało się wykonać rtp z powodu niewystarczających środków! &7Musisz - mieć przynajmniej $%price% &7by wykonać rtp!' - NotSafe: '&cNie udało się znaleź bezpiecznego miejsca w %attempts% próbach! &7Nie - zostałeś przeniesiony!' + Price: '&cNie udało się wykonać rtp z powodu niewystarczających środków! &7Musisz mieć przynajmniej $%price% &7by wykonać rtp!' + NotSafe: '&cNie udało się znaleź bezpiecznego miejsca w %attempts% próbach! &7Nie zostałeś przeniesiony!' Hunger: '&cNie można wykonać rtp bo jesteś... &7zbyt głodny&c, zjedz coś mordo!' Other: - Success: '&a%player% został steleportowany do&7 x=%x% y=%y% z=%z% w &f%attempts% - &7próbach!' - NotSafe: '&cNie udało się znaleźć bezpiecznego miejsca w %attempts% próbach! &7%player% - nie został losowo steleportowany!' + Success: '&a%player% został steleportowany do&7 x=%x% y=%y% z=%z% w &f%attempts% &7próbach!' + NotSafe: '&cNie udało się znaleźć bezpiecznego miejsca w %attempts% próbach! &7%player% nie został losowo steleportowany!' Biome: '&cWygląda na to, że biom&7 %biome%&c nie istnieje! &7Spróbuj użyć listy!' Reload: '&ePrzeładowano konfigurację!' NoPermission: Basic: '&cHej! &7Nie masz uprawnień do tej komendy!' - World: '&cHej! &7Nie jesteś uprawniony by wykonać losową teleoprtację w świecie - %world%!' + World: '&cHej! &7Nie jesteś uprawniony by wykonać losową teleoprtację w świecie %world%!' DisabledWorld: '&cZablokowany świat %world%! &7Nie można wykonać losowej teleportacji!' - Cooldown: '&cWybacz! &7Nie możesz wykonać losowej teleportacji przez następne &c%time% - &7sekund!' + Cooldown: '&cWybacz! &7Nie możesz wykonać losowej teleportacji przez następne &c%time% &7sekund!' Locked: '&cWybacz! &7Wykorzystałeś wszystkie losowe teleportacje!' Invalid: '&cNiewłaściwy argument. Spróbuj ''/%command% help''' NotOnline: '&cGraz &7%player% &cnie jest online!' @@ -39,25 +32,21 @@ Messages: Error: '&cBłąd! &7Wpisano niewłaściwą wartość!' Set: '&bSukces! &7%type% ustawiony na %value%' Remove: '&cUsunięto! &7Usunąłeś customowy świat %world%' + Help: Prefix: '&e&m-----&6&l BetterRTP &8| Help &e&m-----' Main: ' &7- &e/%command% &7- wykonuje losową teleportację!' - Biome: ' &7- &e/%command% biome &7- Losowo teleportuje do któregoś - z biomów' - Edit: ' &7- &e/%command% edit [args...] &7- Edytuj niektóre ustawienia - pluginu' + Biome: ' &7- &e/%command% biome &7- Losowo teleportuje do któregoś z biomów' + Edit: ' &7- &e/%command% edit [args...] &7- Edytuj niektóre ustawienia pluginu' Help: ' &7- &e/%command% help &7- Pokazuję listę z pomocą' - Info: ' &7- &e/%command% info [world/particles/shapes/potion_effects] &7- Pokazuje - wybrane informacje o parametrach pluginu' - Player: ' &7- &e/%command% player [world] [biome1, biome2...] &7- Losowo - teleportuje innego gracza' + Info: ' &7- &e/%command% info [world/particles/shapes/potion_effects] &7- Pokazuje wybrane informacje o parametrach pluginu' + Player: ' &7- &e/%command% player [world] [biome1, biome2...] &7- Losowo teleportuje innego gracza' Reload: ' &7- &e/%command% reload &7- Przeładowuje plugin' Settings: ' &7- &e/%command% settings &7- Pokazuje GUI z ustawieniami' - Test: ' &7- &e/%command% test &7- Testuje efekty teleportacji bez ruszania się z - miejsca' + Test: ' &7- &e/%command% test &7- Testuje efekty teleportacji bez ruszania się z miejsca' Version: ' &7- &e/%command% version &7- Pokaż wersję pluginu' - World: ' &7- &e/%command% world [biome1, biome2...] &7- Losowo teleportuj - do innego świata' + World: ' &7- &e/%command% world [biome1, biome2...] &7- Losowo teleportuj do innego świata' + Usage: Player: '&cUsage&7: /%command% player [world] [biome1, biome2]' World: '&cUsage&7: /%command% world [biome1, biome2...]' @@ -65,5 +54,4 @@ Usage: Edit: Base: '&cUsage&7: /%command% edit [args...]' Default: '&cUsage&7: /%command% edit default ' - World: '&cUsage&7: /%command% edit world - ' + World: '&cUsage&7: /%command% edit world ' \ No newline at end of file diff --git a/src/main/resources/lang/ru.yml b/src/main/resources/lang/ru.yml index 2119aab..4d81aa9 100644 --- a/src/main/resources/lang/ru.yml +++ b/src/main/resources/lang/ru.yml @@ -1,57 +1,57 @@ -# Translation author: Mats_brony (Forine.net) +# Translated to Russian by Logan (https://t.me/icemine_ru) Messages: Prefix: '&7[&6BetterRTP&7] ' Success: - Paid: '&aВы телепортировались на &7x=&a%x% &7y=&a%y% &7z=&a%z% &7за &c$%price%&7, за &f%attempts% &7попытку(ок)!' - Bypass: '&aВы телепортировались на &7x=&a%x% &7y=&a%y% &7z=&a%z% &7за &f%attempts% &7попытку(ок)!' - Loading: '&aБезопасное место найдено! &7Загрузка чанков...' - Teleport: '&aТелепортация... &fпожалуйста, подождите, пока мы найдем безопасное место!' + Paid: '&aВы были телепортированы по координатам &7X: %x%, Y: %y%, Z: %z%&a за &7%attempts%&a попыток и &7$%price%.' + Bypass: '&aВы были телепортированы по координатам &7X: %x%, Y: %y%, Z: %z%&a за &7%attempts%&a попыток.' + Loading: '&aБезопасное место найдено. &7Прогрузка чанков...' + Teleport: '&aТелепортация... &7Пожалуйста, подождите, пока будет найдено безопасное место.' Failed: - Price: '&cНе удалось выполнить rtp из-за недостатка средств! &7Вы должны иметь как минимум $%price% &7для rtp!' - NotSafe: '&cНе удалось найти безопасное место за %attempts% попытку(ок)! &7Вы не были телепортированы!' - Hunger: '&cНе удалось rtp, потому что ты... &7слишком голоден&c, съешь что-нибудь, приятель!' + Price: '&cНевозможно использовать RTP в связи с нехваткой средств! &7Вы должны иметь, как минимум, $%price% на счёте.' + NotSafe: '&cБезопасное место не было найдено в течение &7%attempts%&c попыток! Вы не были телепортированы.' + Hunger: '&cНевозможно телепортировать – вы слишком &7голодны!&c Поешьте прежде.' Other: - Success: '&a%player% телепортирован на &7x=&a%x% &7y=&a%y% &7z=&a%z% &7за &f%attempts% &7попытку(ок)!' - NotSafe: '&cНе удалось найти безопасное место за %attempts% попытку(ок)! &7%player% не был телепортирован!' - Biome: '&cПохоже биом&7 %biome%&c не существует! &7Попробуйте использовать TAB!' + Success: '&7%player%&c был телепортирован по координатам &7X: %x%, Y: %y%, Z: %z%&a за &7%attempts%&a попыток.' + NotSafe: '&cБезопасное место не было найдено в течение &7%attempts%&c попыток! &7%player%&c не был телепортированы.' + Biome: '&cПохоже, биом &7%biome%&c не существует. Попробуйте использовать TAB-лист.' Reload: '&eКонфиг успешно перезагружен!' NoPermission: - Basic: '&cИзвините! &7У вас нет разрешения на использование этой команды!' - World: '&cИзвините! &7Вам не разрешено использовать rtp в %world% мире!' - DisabledWorld: '&cМир %world% исключён! &7Не удалось телепортироваться!' - Cooldown: '&cИзвините! &7Вы не можете использовать rtp еще &c%time% &7секунд(ы/у)!' - Locked: '&cИзвините! &7Вы израсходовали все свои попытки rtp!' - Invalid: '&cНедопустимый аргумент. Попробуйте ''/%command% help''' - NotOnline: '&cИгрок &7%player% &cне онлайн!' - Delay: '&aТелепортация через &f%time% &aсекунд(ы/у)! Не двигайтесь!' - Moved: '&cВы двинулись &7rtp отменено!' - NotExist: '&cПохоже мир &7%world% &cне существует!' - Already: '&cОй! &7Похоже, вы уже используете rtp, наберитесь терпения!' - Sign: '&7Значение команды создано! &7Команда... ''&f/rtp %command%&7''' + Basic: '&cИзвините! Недостаточно полномочий для выполнения команды.' + World: '&cК сожалению, Вам не разрешено использовать рандомную телепортацию в мире &7%world%.' + DisabledWorld: '&cНевозможно использовать рандомную телепортацию - мир &7%world%&c отключен!' + Cooldown: '&cК сожалению, рандомная телепортация будет недоступна еще &7%time%&c секунд.' + Locked: '&cК сожалению, Вы истратили все свои рандомные телепортации.' + Invalid: '&cНеверный аргумент. Используйте: ''/%command% help''' + NotOnline: '&cИгрок &7%player% &cне в игре.' + Delay: '&aТелепортация через &7%time% &aсекунд! Не двигайтесь!' + Moved: '&cВы двинулись! &7Рандомная телепортация отменена!' + NotExist: '&cПохоже, мир &7%world%&c не существует.' + Already: '&cВы уже ожидаете рандомную телепортацию. Проявите терпение.' + Sign: '&aКомандная табличка создана. Команда: &7''&7/rtp %command%&7''' Edit: - Error: '&cОшибка! &7Неверный ввод!' - Set: '&bУспех! &7%type% установлено %value%' - Remove: '&cУдалено! &7Вы удалили мир %world%' + Error: '&cОшибка! &7Введены неверные значения.' + Set: '&bУспех! &7%type% установлен на %value%' + Remove: '&cУдалено! &7Вы удалили нестандартный мир %world%' + Help: - Prefix: '&e&m-----&6&l BetterRTP &8| Help &e&m-----' - Main: ' &7- &e/%command% &7- случайный телепорт!' - Biome: ' &7- &e/%command% biome &7- рандомный телепорт в эти биомы' - Edit: ' &7- &e/%command% edit [args...] &7- изменение настроек плагина' - Help: ' &7- &e/%command% help &7- посмотреть этот список' - Info: ' &7- &e/%command% info [world/particles/shapes/potion_effects] &7- просмотр конкретной информации о параметрах плагина' - Player: ' &7- &e/%command% player [world] [biome1, biome2...] &7- рандомный телепорт игрока' + Prefix: '&e&m-----&6&l BetterRTP &8| Помощь &e&m-----' + Main: ' &7- &e/%command% &7- телепортирует Вас в рандомное место!' + Biome: ' &7- &e/%command% biome <биом1, биом2...> &7- телепортирует Вас в рандомное место в указанных биомах' + Edit: ' &7- &e/%command% edit [аргументы...] &7- настройка некоторых данных плагина' + Help: ' &7- &e/%command% help &7- отображает список команд' + Info: ' &7- &e/%command% info [world/particles/shapes/potion_effects] &7- отображает информацию о конкретных параметрах' + Player: ' &7- &e/%command% player [мир] [биом, биом...] &7- телепортирует игрока в рандомное место в указанных биомах в указанный мир' Reload: ' &7- &e/%command% reload &7- перезагрузка плагина' - Settings: ' &7- &e/%command% settings &7- открыть gui и изменить параметры' - Test: ' &7- &e/%command% test &7- просмотр эффектов после телепортирования - не двигаясь' - Version: ' &7- &e/%command% version &7- посмотреть текущую версию плагина' - World: ' &7- &e/%command% world [biome1, biome2...] &7- рандомный телепорт - в другой мир' + Settings: ' &7- &e/%command% settings &7- отобразить GUI и некоторые параметры' + Test: ' &7- &e/%command% test &7- протестировать эффект плагина после телелепортации' + Version: ' &7- &e/%command% version &7- отобразить текущую версию плагина' + World: ' &7- &e/%command% world [biome1, biome2...] &7- телепортирует Вас в рандомное место в указанных биомах в указанный мир' + Usage: - Player: '&cИспользуйте&7: /%command% player [world] [biome1, biome2]' - World: '&cИспользуйте&7: /%command% world [biome1, biome2...]' - Biome: '&cИспользуйте&7: /%command% biome ' + Player: '&cUsage&7: /%command% player <игрок> [мир] [биом1, биом2]' + World: '&cUsage&7: /%command% world <мир> [биом1, биом2...]' + Biome: '&cUsage&7: /%command% biome <биом1, биом2...>' Edit: - Base: '&cИспользуйте&7: /%command% edit [args...]' - Default: '&cИспользуйте&7: /%command% edit default ' - World: '&cИспользуйте&7: /%command% edit world ' \ No newline at end of file + Base: '&cUsage&7: /%command% edit [аргументы...]' + Default: '&cUsage&7: /%command% edit default ' + World: '&cUsage&7: /%command% edit world ' \ No newline at end of file diff --git a/src/main/resources/plugin.yml b/src/main/resources/plugin.yml index dc2a2d4..4bdb719 100644 --- a/src/main/resources/plugin.yml +++ b/src/main/resources/plugin.yml @@ -1,5 +1,5 @@ main: me.SuperRonanCraft.BetterRTP.BetterRTP -version: '3.0.1' +version: '3.0.2' name: BetterRTP author: SuperRonanCraft softdepend: