Fix clue scroll plugin game object query for world overlay

This commit is contained in:
Charlie Waters
2018-03-26 23:36:26 -04:00
parent 017a6a9b36
commit c335bb484d

View File

@@ -163,7 +163,7 @@ public class ClueScrollPlugin extends Plugin
if (objectId != -1)
{
GameObjectQuery query = new GameObjectQuery().idEquals();
GameObjectQuery query = new GameObjectQuery().idEquals(objectId);
objectsToMark = queryRunner.runQuery(query);
}
}