Skip to content

Commit

Permalink
add GT owner type support
Browse files Browse the repository at this point in the history
  • Loading branch information
serenibyss committed Dec 18, 2024
1 parent 5c9282a commit d262999
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -152,6 +152,8 @@ private void tryParseType(NBTTagCompound raw) {
type = "Town: " + raw.getString("townName");
} else if (raw.hasKey("poppetX", Constants.NBT.TAG_INT)) { // Witchery
type = "Poppet";
} else if (raw.hasKey("OwnerType", Constants.NBT.TAG_STRING)) { // GregTech
type = raw.getString("OwnerType");
}

if (type != null) {
Expand Down

0 comments on commit d262999

Please sign in to comment.