Moved code 2 lines up to not bypass the reload time count

This commit is contained in:
DroppingAnvil 2019-10-13 02:52:23 -05:00
parent b13afcb6a2
commit 93744347db
1 changed files with 2 additions and 1 deletions

View File

@ -29,12 +29,13 @@ public class CmdReload extends FCommand {
if (FactionsPlugin.getInstance().getConfig().getBoolean("enable-faction-flight")) {
FactionsPlugin.getInstance().factionsFlight = true;
}
long timeReload = (System.currentTimeMillis() - timeInitStart);
if (!FactionsPlugin.getInstance().mc17) {
FactionsPlayerListener.loadCorners();
}
long timeReload = (System.currentTimeMillis() - timeInitStart);
context.msg(TL.COMMAND_RELOAD_TIME, timeReload);
}