Merge pull request #3057 from open-osrs/poh-error
This commit is contained in:
@@ -27,7 +27,7 @@ object ProjectVersions {
|
||||
const val launcherVersion = "2.2.0"
|
||||
const val rlVersion = "1.8.0"
|
||||
|
||||
const val openosrsVersion = "4.13.1"
|
||||
const val openosrsVersion = "4.13.2"
|
||||
|
||||
const val rsversion = 200
|
||||
const val cacheversion = 165
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
package net.runelite.rs.api;
|
||||
|
||||
import net.runelite.api.ItemComposition;
|
||||
import net.runelite.api.IterableHashTable;
|
||||
import net.runelite.mapping.Import;
|
||||
|
||||
public interface RSItemComposition extends ItemComposition
|
||||
@@ -88,6 +89,9 @@ public interface RSItemComposition extends ItemComposition
|
||||
@Import("params")
|
||||
RSIterableNodeHashTable getParams();
|
||||
|
||||
@Import("params")
|
||||
void setParams(IterableHashTable params);
|
||||
|
||||
@Import("params")
|
||||
void setParams(RSIterableNodeHashTable params);
|
||||
}
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
package net.runelite.rs.api;
|
||||
|
||||
import net.runelite.api.IterableHashTable;
|
||||
import net.runelite.api.NPCComposition;
|
||||
import net.runelite.mapping.Import;
|
||||
|
||||
@@ -63,6 +64,9 @@ public interface RSNPCComposition extends NPCComposition
|
||||
@Import("params")
|
||||
RSIterableNodeHashTable getParams();
|
||||
|
||||
@Import("params")
|
||||
void setParams(IterableHashTable params);
|
||||
|
||||
@Import("params")
|
||||
void setParams(RSIterableNodeHashTable params);
|
||||
}
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
package net.runelite.rs.api;
|
||||
|
||||
import net.runelite.api.IterableHashTable;
|
||||
import net.runelite.api.ObjectComposition;
|
||||
import net.runelite.mapping.Import;
|
||||
|
||||
@@ -39,6 +40,9 @@ public interface RSObjectComposition extends ObjectComposition
|
||||
@Import("params")
|
||||
RSIterableNodeHashTable getParams();
|
||||
|
||||
@Import("params")
|
||||
void setParams(IterableHashTable params);
|
||||
|
||||
@Import("params")
|
||||
void setParams(RSIterableNodeHashTable params);
|
||||
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
package net.runelite.rs.api;
|
||||
|
||||
import net.runelite.api.IterableHashTable;
|
||||
import net.runelite.api.StructComposition;
|
||||
import net.runelite.mapping.Import;
|
||||
|
||||
@@ -11,6 +12,9 @@ public interface RSStructComposition extends StructComposition
|
||||
@Import("params")
|
||||
RSIterableNodeHashTable getParams();
|
||||
|
||||
@Import("params")
|
||||
void setParams(IterableHashTable params);
|
||||
|
||||
@Import("params")
|
||||
void setParams(RSIterableNodeHashTable params);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user