Whitespace + general cleanup

This commit is contained in:
Erik Broes
2011-05-14 16:29:42 +02:00
parent e54d8c3352
commit 309846d732
87 changed files with 474 additions and 421 deletions

View File

@@ -126,13 +126,13 @@ public class PlayerManager {
int i1 = i - k;
int j1 = j - l;
// Craftbukkit start
// CraftBukkit start
if (i1 > 10 || i1 < -10 || j1 > 10 || j1 < -10) {
this.removePlayer(entityplayer);
this.addPlayer(entityplayer);
return;
}
// Craftbukkit end
// CraftBukkit end
if (i1 != 0 || j1 != 0) {
for (int k1 = i - 10; k1 <= i + 10; ++k1) {