Skip to content

Commit

Permalink
Fixes item frame and painting icons in limits gui
Browse files Browse the repository at this point in the history
  • Loading branch information
tastybento committed Jul 7, 2019
1 parent a886aaa commit 70e2030
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/bentobox/addon/limits/commands/LimitPanel.java
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,8 @@ public class LimitPanel {
E2M.put(EntityType.WITHER, Material.WITHER_SKELETON_SKULL);
E2M.put(EntityType.BOAT, Material.OAK_BOAT);
E2M.put(EntityType.ARMOR_STAND, Material.ARMOR_STAND);
E2M.put(EntityType.ITEM_FRAME, Material.ITEM_FRAME);
E2M.put(EntityType.PAINTING, Material.PAINTING);

// Minecarts
E2M.put(EntityType.MINECART_TNT, Material.TNT_MINECART);
Expand Down Expand Up @@ -67,8 +69,6 @@ public class LimitPanel {
E2M.put(EntityType.SNOWBALL, null);
E2M.put(EntityType.EGG, null);
E2M.put(EntityType.LEASH_HITCH, null);
E2M.put(EntityType.ITEM_FRAME, null);
E2M.put(EntityType.PAINTING, null);
E2M.put(EntityType.GIANT, null);
E2M.put(EntityType.ENDER_CRYSTAL, null);
E2M.put(EntityType.ENDER_PEARL, null);
Expand Down

0 comments on commit 70e2030

Please sign in to comment.