Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
ZetaMap committed Jul 9, 2021
1 parent 41c4146 commit 23e8084
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions src/main/java/moreCommandsPlugin.java
Original file line number Diff line number Diff line change
Expand Up @@ -952,15 +952,14 @@ public void run() {
target.unit().set(co[0]*8, co[1]*8);
Call.setPosition(target.con, co[0]*8, co[1]*8);
new Thread() {
public void run(Player p) {
public void run() {
try {
p.sendMessage(p.con.lastReceivedClientTime + 100+ "");
Thread.sleep(p.con.lastReceivedClientTime + 100);
Thread.sleep(100);
Config.strict.set(true);
Core.settings.forceSave();
} catch (InterruptedException e) {}
}
}.run(target);
}.start();
} else {
target.unit().set(co[0]*8, co[1]*8);
Call.setPosition(target.con, co[0]*8, co[1]*8);
Expand Down

0 comments on commit 23e8084

Please sign in to comment.