From 82706e399ce4c773b305d25e0f6c6616c7770d0d Mon Sep 17 00:00:00 2001 From: boy0001 Date: Mon, 16 Feb 2015 19:38:27 +1100 Subject: [PATCH] Fixed approximation --- .../java/com/intellectualcrafters/plot/commands/Condense.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PlotSquared/src/main/java/com/intellectualcrafters/plot/commands/Condense.java b/PlotSquared/src/main/java/com/intellectualcrafters/plot/commands/Condense.java index 93ec5a3df..59bdf4028 100644 --- a/PlotSquared/src/main/java/com/intellectualcrafters/plot/commands/Condense.java +++ b/PlotSquared/src/main/java/com/intellectualcrafters/plot/commands/Condense.java @@ -195,7 +195,7 @@ public class Condense extends SubCommand { PlayerFunctions.sendMessage(plr, "=== INPUT EVAL ==="); PlayerFunctions.sendMessage(plr, "INPUT RADIUS: " + radius); PlayerFunctions.sendMessage(plr, "ESTIMATED MOVES: " + user_move); - PlayerFunctions.sendMessage(plr, "ESTIMATED TIME: " + (user_move * 16) +" seconds"); + PlayerFunctions.sendMessage(plr, "ESTIMATED TIME: " + "No idea, times will drastically change based on the system performance and load"); PlayerFunctions.sendMessage(plr, "&e - Radius is measured in plot width"); return true; }