mirror of
				https://github.com/mcMMO-Dev/mcMMO.git
				synced 2025-10-31 09:13:43 +01:00 
			
		
		
		
	Actually I should merge from master before working on this further
This commit is contained in:
		| @@ -1,8 +1,26 @@ | |||||||
| package com.gmail.nossr50.config.hocon.skills.taming; | package com.gmail.nossr50.config.hocon.skills.taming; | ||||||
|  |  | ||||||
|  | import ninja.leaping.configurate.objectmapping.Setting; | ||||||
| import ninja.leaping.configurate.objectmapping.serialize.ConfigSerializable; | import ninja.leaping.configurate.objectmapping.serialize.ConfigSerializable; | ||||||
|  |  | ||||||
|  |  | ||||||
| @ConfigSerializable | @ConfigSerializable | ||||||
| public class ConfigTamingCallOfTheWild { | public class ConfigTamingCallOfTheWild { | ||||||
|  |  | ||||||
|  |     @Setting(value = "Cat-Summon-Item-Name", comment = "The name of the item used to summon cats.") | ||||||
|  |     private String cotwCatItem = "minecraft:raw_cod"; | ||||||
|  |     private String cotwWolfItem = "minecraft:bone"; | ||||||
|  |     private String cotwHorseItem = "minecraft:apple"; | ||||||
|  |  | ||||||
|  |     public String getCotwCatItem() { | ||||||
|  |         return cotwCatItem; | ||||||
|  |     } | ||||||
|  |  | ||||||
|  |     public String getCotwWolfItem() { | ||||||
|  |         return cotwWolfItem; | ||||||
|  |     } | ||||||
|  |  | ||||||
|  |     public String getCotwHorseItem() { | ||||||
|  |         return cotwHorseItem; | ||||||
|  |     } | ||||||
| } | } | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user
	 nossr50
					nossr50