From 6a0fd2a0d081d2d206e98f400c80cd641138058e Mon Sep 17 00:00:00 2001 From: Max Weber Date: Sat, 4 Apr 2020 05:00:04 -0600 Subject: [PATCH] http-api: remove unused fields from NPCInfo These fields are never used. If we need this information we can get it from the client's cache --- http-api/src/main/java/net/runelite/http/api/npc/NpcInfo.java | 2 -- 1 file changed, 2 deletions(-) diff --git a/http-api/src/main/java/net/runelite/http/api/npc/NpcInfo.java b/http-api/src/main/java/net/runelite/http/api/npc/NpcInfo.java index 285169a32d..091f36e471 100644 --- a/http-api/src/main/java/net/runelite/http/api/npc/NpcInfo.java +++ b/http-api/src/main/java/net/runelite/http/api/npc/NpcInfo.java @@ -29,7 +29,5 @@ import lombok.Data; @Data public class NpcInfo { - private String name; - private int combat; private int hitpoints; }