Code style changes.

This commit is contained in:
MobiusDev
2016-04-26 19:21:19 +00:00
parent 6a13705766
commit fc070c9238
768 changed files with 3338 additions and 4252 deletions

View File

@@ -155,8 +155,8 @@ public final class SummonNpc extends AbstractEffect
int y = player.getY();
if (_randomOffset)
{
x += (Rnd.nextBoolean() ? Rnd.get(20, 50) : Rnd.get(-50, -20));
y += (Rnd.nextBoolean() ? Rnd.get(20, 50) : Rnd.get(-50, -20));
x += Rnd.nextBoolean() ? Rnd.get(20, 50) : Rnd.get(-50, -20);
y += Rnd.nextBoolean() ? Rnd.get(20, 50) : Rnd.get(-50, -20);
}
spawn.setX(x);