theatre: Local fields

This commit is contained in:
sdburns1998
2019-07-07 21:30:40 +02:00
parent 422ed5ead6
commit c12232a4cb

View File

@@ -45,9 +45,6 @@ public class NyloHandler extends RoomHandler
private int wave = 0;
private NyloOverlay overlay = null;
private NyloPredictor predictor = null;
private Point south = new Point(64, 41);
private Point west = new Point(49, 56);
private Point east = new Point(78, 56);
public NyloHandler(final Client client, final TheatrePlugin plugin)
{
@@ -401,9 +398,9 @@ public class NyloHandler extends RoomHandler
int centerX = minX + 5;
int centerY = minY + 5;
south = new Point(centerX + 1, centerY - 14);
east = new Point(centerX + 15, centerY);
west = new Point(centerX - 14, centerY);
Point south = new Point(centerX + 1, centerY - 14);
Point east = new Point(centerX + 15, centerY);
Point west = new Point(centerX - 14, centerY);
if (this.predictor != null)
{