Skip to content

Commit

Permalink
1.7.10 Update
Browse files Browse the repository at this point in the history
  • Loading branch information
LOOHP committed Apr 11, 2020
1 parent 0f4edb1 commit a110b1c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
6 changes: 4 additions & 2 deletions src/com/loohp/interactivechat/ConfigManager.java
Original file line number Diff line number Diff line change
Expand Up @@ -214,8 +214,10 @@ public static void loadConfig() {
InteractiveChat.invTitle = ChatColor.translateAlternateColorCodes('&', ConfigManager.getConfig().getString("ItemDisplay.Inventory.InventoryTitle"));
InteractiveChat.enderTitle = ChatColor.translateAlternateColorCodes('&', ConfigManager.getConfig().getString("ItemDisplay.EnderChest.InventoryTitle"));

InteractiveChat.itemFrame1 = Material.valueOf(ConfigManager.getConfig().getString("ItemDisplay.Item.Frame.Primary"));
InteractiveChat.itemFrame2 = Material.valueOf(ConfigManager.getConfig().getString("ItemDisplay.Item.Frame.Secondary"));
if (InteractiveChat.version.contains("legacy")) {
InteractiveChat.itemFrame1 = Material.valueOf(ConfigManager.getConfig().getString("ItemDisplay.Item.Frame.Primary"));
InteractiveChat.itemFrame2 = Material.valueOf(ConfigManager.getConfig().getString("ItemDisplay.Item.Frame.Secondary"));
}

InteractiveChat.usePlayerName = ConfigManager.getConfig().getBoolean("Player.UsePlayerNameInteraction");
InteractiveChat.usePlayerNameHoverEnable = ConfigManager.getConfig().getBoolean("Player.Hover.Enable");
Expand Down
2 changes: 1 addition & 1 deletion src/plugin.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: InteractiveChat
author: loohp
version: 1.7.9
version: 1.7.10
main: com.loohp.interactivechat.InteractiveChat
api-version: 1.13
description: Make the chat interactive
Expand Down

0 comments on commit a110b1c

Please sign in to comment.