mirror of
				https://github.com/mcMMO-Dev/mcMMO.git
				synced 2025-10-31 01:03:44 +01:00 
			
		
		
		
	Fixed setting custom names and lore with treasures
This commit is contained in:
		| @@ -25,6 +25,7 @@ Version 1.5.01-dev | ||||
|  = Fixed bug which causes /party teleport to stop working | ||||
|  = Fixed bug where SaveTimerTask would produce an IndexOutOfBoundsException | ||||
|  = Fixed bug where Alchemy would not fire BrewEvents | ||||
|  = Fixed bug with setting custom names and lore in treasures config | ||||
|  ! Changed player data saving. Save tasks are now asynchronous | ||||
|  ! Vanished players no longer get hit by AoE effects | ||||
|  ! Changed Alchemy config option 'Prevent_Hopper_Transfer' renamed to 'Prevent_Hopper_Transfer_Ingredients' | ||||
|   | ||||
| @@ -259,13 +259,13 @@ public class TreasureConfig extends ConfigLoader { | ||||
|  | ||||
|                 if (config.contains(type + "." + treasureName + ".Custom_Name")) { | ||||
|                     ItemMeta itemMeta = item.getItemMeta(); | ||||
|                     itemMeta.setDisplayName(config.getString(type + "." + treasureName + "Custom_Name")); | ||||
|                     itemMeta.setDisplayName(config.getString(type + "." + treasureName + ".Custom_Name")); | ||||
|                     item.setItemMeta(itemMeta); | ||||
|                 } | ||||
|  | ||||
|                 if (config.contains(type + "." + treasureName + ".Lore")) { | ||||
|                     ItemMeta itemMeta = item.getItemMeta(); | ||||
|                     itemMeta.setLore(config.getStringList(type + "." + treasureName + "Custom_Name")); | ||||
|                     itemMeta.setLore(config.getStringList(type + "." + treasureName + ".Lore")); | ||||
|                     item.setItemMeta(itemMeta); | ||||
|                 } | ||||
|             } | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 TfT_02
					TfT_02