mirror of
https://github.com/mcMMO-Dev/mcMMO.git
synced 2024-11-24 22:26:46 +01:00
Actually I should merge from master before working on this further
This commit is contained in:
parent
250753c064
commit
fdc8e4b81d
@ -1,8 +1,26 @@
|
||||
package com.gmail.nossr50.config.hocon.skills.taming;
|
||||
|
||||
import ninja.leaping.configurate.objectmapping.Setting;
|
||||
import ninja.leaping.configurate.objectmapping.serialize.ConfigSerializable;
|
||||
|
||||
|
||||
@ConfigSerializable
|
||||
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;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user