Update Portal.java

Add ''to enter this portal'' instead of ''to teleport to (loc)"
This commit is contained in:
xPepijnxTechx 2019-06-23 15:54:49 +02:00 committed by GitHub
parent 16fcc5dccc
commit 4d816cbd46
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -382,7 +382,7 @@ public class Portal {
if (cooldown.get(player.getName()) != null) {
int diff = (int) ((System.currentTimeMillis() - cooldown.get(player.getName())) / 1000);
if (diff < cooldelay) {
player.sendMessage(ChatColor.RED + "Please wait " + ChatColor.YELLOW + (cooldelay - diff) + ChatColor.RED + " seconds until attempting to teleport again.");
player.sendMessage(ChatColor.RED + "Please wait " + ChatColor.YELLOW + (cooldelay - diff) + ChatColor.RED + " second(s) until attempting to enter this portal again.");
failSound(player, portal);
throwPlayerBack(player);
return false;