Skip to content

Commit

Permalink
reduce the scan range for marker placement from 16 to 4
Browse files Browse the repository at this point in the history
  • Loading branch information
benblank committed Mar 5, 2016
1 parent cd2f6dc commit ee4cf1b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ public void onLivingDeathEvent(final LivingDeathEvent event) {
return;
}

for (int delta = 0; delta < 16; delta++) {
for (int delta = 0; delta < 4; delta++) {
for (int dx = -delta; dx <= delta; dx++) {
for (int dy = -delta; dy <= delta; dy++) {
for (int dz = -delta; dz <= delta; dz++) {
Expand Down

0 comments on commit ee4cf1b

Please sign in to comment.