Skip to content

Commit

Permalink
feat: Adjusted fixed size to fit may 2004 map correctly
Browse files Browse the repository at this point in the history
  • Loading branch information
Pazaz committed May 3, 2024
1 parent 7915062 commit 8983d29
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions mapview/src/main/java/mapview.java
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@ public final class mapview extends GameShell {
private static final boolean shouldDrawBorders = false;
private static final boolean shouldDrawLabels = true;

private final short sizeX = 1280;
private final short sizeZ = 1216;
private final short centerX = 2304;
private final short centerZ = 2816;
private final short sizeX = 20 << 6;
private final short sizeZ = 21 << 6;
private final short centerX = 35 << 6;
private final short centerZ = 43 << 6;

@OriginalMember(owner = "mapview!mapview", name = "M", descriptor = "I")
private int redrawTimer;
Expand Down

0 comments on commit 8983d29

Please sign in to comment.