injector: Add "Scene" hint for drawTile method in renderDraw raw

This commit is contained in:
Lucwousin
2019-07-24 08:20:02 +02:00
parent 4264aeecaf
commit b841b7ce54

View File

@@ -35,7 +35,7 @@ public class RenderDraw
{
Stopwatch stopwatch = Stopwatch.createStarted();
net.runelite.asm.Method obmethod = findMethod(inject, "drawTile");
net.runelite.asm.Method obmethod = findMethod(inject, "drawTile", "Scene");
Method renderDraw = findMethod(inject, "draw", "Entity").getPoolMethod();
Instructions ins = obmethod.getCode().getInstructions();
@@ -65,10 +65,9 @@ public class RenderDraw
if (count < 21)
{
//TODO: Fix for travis
//throw new InjectionException("Not all renderDraws were found");
throw new InjectionException("Not all renderDraws were found");
}
else if (count != 21)
if (count != 21)
{
log.warn("Found {} draws while 21 were expected. Rev update?", count);
}