Update kits
This commit is contained in:
@@ -29,7 +29,7 @@ class KitManager(
|
||||
kitClass = AnchorKit::class.java,
|
||||
id = "anchor",
|
||||
displayName = plugin.chatFormatter.format( "kits.anchor.displayName" ),
|
||||
description = emptyList(),
|
||||
description = plugin.chatFormatter.formatList( "kits.anchor.lore" ),
|
||||
icon = Material.ANVIL
|
||||
)
|
||||
|
||||
@@ -37,7 +37,7 @@ class KitManager(
|
||||
kitClass = ArmorerKit::class.java,
|
||||
id = "armorer",
|
||||
displayName = plugin.chatFormatter.format( "kits.armorer.displayName" ),
|
||||
description = emptyList(),
|
||||
description = plugin.chatFormatter.formatList( "kits.armorer.lore" ),
|
||||
icon = Material.IRON_CHESTPLATE
|
||||
)
|
||||
|
||||
@@ -45,7 +45,7 @@ class KitManager(
|
||||
kitClass = BlackPantherKit::class.java,
|
||||
id = "blackpanther",
|
||||
displayName = plugin.chatFormatter.format( "kits.blackpanther.displayName" ),
|
||||
description = emptyList(),
|
||||
description = plugin.chatFormatter.formatList( "kits.blackpanther.lore" ),
|
||||
icon = Material.DRAGON_EGG
|
||||
)
|
||||
|
||||
@@ -53,7 +53,7 @@ class KitManager(
|
||||
kitClass = BlitzcrankKit::class.java,
|
||||
id = "blitzcrank",
|
||||
displayName = plugin.chatFormatter.format( "kits.blitzcrank.displayName" ),
|
||||
description = emptyList(),
|
||||
description = plugin.chatFormatter.formatList( "kits.blitzcrank.lore" ),
|
||||
icon = Material.FISHING_ROD
|
||||
)
|
||||
}
|
||||
@@ -62,7 +62,7 @@ class KitManager(
|
||||
kitClass: Class<out AbstractKit>,
|
||||
id: String,
|
||||
displayName: Component,
|
||||
description: List<String>,
|
||||
description: List<Component>,
|
||||
icon: Material
|
||||
) {
|
||||
val constructor = kitClass.getDeclaredConstructor(
|
||||
|
||||
Reference in New Issue
Block a user