bringup to current runelite-master

This commit is contained in:
Zeruth
2019-07-01 18:10:13 -04:00
parent 83e54fb476
commit 74da8a883f
22 changed files with 1148 additions and 434 deletions

View File

@@ -108,7 +108,7 @@ class Sprite
}
public void drawAtOn(Rasterizer2D graphics, int x, int y)
public void drawAtOn(Rasterizer2D graphics, int x, int y)
{
x += this.offsetX;
y += this.offsetY;

View File

@@ -64,7 +64,7 @@ public class AreaDumper
for (AreaDefinition area : areaManager.getAreas())
{
Files.asCharSink(new File(outDir, area.id + ".json"), Charset.defaultCharset()).write(gson.toJson(area));
Files.asCharSink(new File(outDir, area.id + ".json"), Charset.defaultCharset()).write(gson.toJson(area));
++count;
}
}