Added small flower tag
This commit is contained in:
parent
ff97cd3776
commit
a2d95cf795
4 changed files with 19 additions and 1 deletions
|
@ -3,7 +3,7 @@ org.gradle.jvmargs = -Xmx1G
|
|||
org.gradle.parallel = true
|
||||
|
||||
# Mod Properties
|
||||
version = 2.0.0
|
||||
version = 2.1.0
|
||||
maven_group = xyz.limepot
|
||||
archives_base_name = roses_mod
|
||||
|
||||
|
|
|
@ -13,6 +13,9 @@ import net.minecraft.loot.LootPool;
|
|||
import net.minecraft.loot.entry.ItemEntry;
|
||||
import net.minecraft.registry.Registries;
|
||||
import net.minecraft.registry.Registry;
|
||||
import net.minecraft.registry.RegistryKey;
|
||||
import net.minecraft.registry.RegistryKeys;
|
||||
import net.minecraft.registry.tag.TagKey;
|
||||
import net.minecraft.util.Identifier;
|
||||
import org.quiltmc.loader.api.ModContainer;
|
||||
import org.quiltmc.qsl.base.api.entrypoint.ModInitializer;
|
||||
|
@ -69,6 +72,7 @@ public class RosesMod implements ModInitializer {
|
|||
}
|
||||
});
|
||||
|
||||
|
||||
//INIT
|
||||
LOGGER.info("Hello Quilt world from {}!", mod.metadata().name());
|
||||
}
|
||||
|
|
|
@ -0,0 +1,7 @@
|
|||
{
|
||||
"replace": false,
|
||||
"values": [
|
||||
"roses_mod:rose_flower",
|
||||
"roses_mod:cyan_rose"
|
||||
]
|
||||
}
|
|
@ -0,0 +1,7 @@
|
|||
{
|
||||
"replace": false,
|
||||
"values": [
|
||||
"roses_mod:rose_flower",
|
||||
"roses_mod:cyan_rose"
|
||||
]
|
||||
}
|
Loading…
Reference in a new issue