itemstats: check for two handed interactions (#12168)

This commit is contained in:
Cyborger1
2020-07-21 04:13:11 -04:00
committed by GitHub
parent 05c4a5c1d5
commit 4362adb876
3 changed files with 42 additions and 8 deletions

View File

@@ -24,6 +24,7 @@
*/
package net.runelite.http.api.item;
import com.google.gson.annotations.SerializedName;
import lombok.Builder;
import lombok.Value;
@@ -33,6 +34,9 @@ public class ItemEquipmentStats
{
private int slot;
@SerializedName("is2h")
private boolean isTwoHanded;
private int astab;
private int aslash;
private int acrush;
@@ -51,4 +55,3 @@ public class ItemEquipmentStats
private int prayer;
private int aspeed;
}