File tree Expand file tree Collapse file tree 2 files changed +8
-7
lines changed
Essentials/src/com/earth2me/essentials Expand file tree Collapse file tree 2 files changed +8
-7
lines changed Original file line number Diff line number Diff line change @@ -332,7 +332,8 @@ else if (ess.getSettings().allowSilentJoinQuit())
332332 }
333333 }
334334
335- if (!user .isAuthorized ("essentials.speed" )) {
335+ if (!user .isAuthorized ("essentials.speed" ))
336+ {
336337 user .getBase ().setFlySpeed (0.1f );
337338 user .getBase ().setWalkSpeed (0.2f );
338339 }
Original file line number Diff line number Diff line change @@ -273,12 +273,12 @@ public void onSignBlockPistonRetract(final BlockPistonRetractEvent event)
273273 {
274274 final Block pistonBaseBlock = event .getBlock ();
275275 final Block [] affectedBlocks = new Block []
276- {
277- pistonBaseBlock ,
278- pistonBaseBlock .getRelative (event .getDirection ()),
279- event .getRetractLocation ().getBlock ()
280- };
281-
276+ {
277+ pistonBaseBlock ,
278+ pistonBaseBlock .getRelative (event .getDirection ()),
279+ event .getRetractLocation ().getBlock ()
280+ };
281+
282282 for (Block block : affectedBlocks )
283283 {
284284 if (((block .getType () == WALL_SIGN
You can’t perform that action at this time.
0 commit comments