mirror of
https://github.com/TeamMidnightDust/CullLeaves.git
synced 2025-12-15 14:15:08 +01:00
Rename to Cull Leaves
This commit is contained in:
@@ -1,2 +1,6 @@
|
|||||||
|
<<<<<<< Updated upstream
|
||||||
# Smart Leaves
|
# Smart Leaves
|
||||||
|
=======
|
||||||
|
# Cull Leaves
|
||||||
|
>>>>>>> Stashed changes
|
||||||
Adds culling to leaf blocks, providing a huge performance boost over vanilla.
|
Adds culling to leaf blocks, providing a huge performance boost over vanilla.
|
||||||
|
|||||||
@@ -10,7 +10,7 @@ org.gradle.jvmargs=-Xmx1G
|
|||||||
# Mod Properties
|
# Mod Properties
|
||||||
mod_version = 1.0.0
|
mod_version = 1.0.0
|
||||||
maven_group = eu.midnightdust
|
maven_group = eu.midnightdust
|
||||||
archives_base_name = fastleaves
|
archives_base_name = smartleaves
|
||||||
|
|
||||||
# Dependencies
|
# Dependencies
|
||||||
# currently not on the main fabric site, check on the maven: https://maven.fabricmc.net/net/fabricmc/fabric-api/fabric-api
|
# currently not on the main fabric site, check on the maven: https://maven.fabricmc.net/net/fabricmc/fabric-api/fabric-api
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
package eu.midnightdust.fastleaves.mixin;
|
package eu.midnightdust.cullleaves.mixin;
|
||||||
|
|
||||||
import net.fabricmc.api.EnvType;
|
import net.fabricmc.api.EnvType;
|
||||||
import net.fabricmc.api.Environment;
|
import net.fabricmc.api.Environment;
|
||||||
BIN
src/main/resources/assets/cullleaves/icon.png
Normal file
BIN
src/main/resources/assets/cullleaves/icon.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 12 KiB |
Binary file not shown.
|
Before Width: | Height: | Size: 18 KiB |
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"required": true,
|
"required": true,
|
||||||
"package": "eu.midnightdust.fastleaves.mixin",
|
"package": "eu.midnightdust.cullleaves.mixin",
|
||||||
"compatibilityLevel": "JAVA_8",
|
"compatibilityLevel": "JAVA_8",
|
||||||
"client": [
|
"client": [
|
||||||
"MixinLeavesBlock"
|
"MixinLeavesBlock"
|
||||||
@@ -1,9 +1,9 @@
|
|||||||
{
|
{
|
||||||
"schemaVersion": 1,
|
"schemaVersion": 1,
|
||||||
"id": "fastleaves",
|
"id": "cullleaves",
|
||||||
"version": "${version}",
|
"version": "${version}",
|
||||||
|
|
||||||
"name": "Fast Leaves",
|
"name": "Cull Leaves",
|
||||||
"description": "Adds culling to leaf blocks, providing a huge performance boost over vanilla.",
|
"description": "Adds culling to leaf blocks, providing a huge performance boost over vanilla.",
|
||||||
"authors": [
|
"authors": [
|
||||||
"Motschen",
|
"Motschen",
|
||||||
@@ -11,16 +11,16 @@
|
|||||||
],
|
],
|
||||||
"contact": {
|
"contact": {
|
||||||
"homepage": "https://www.midnightdust.eu/",
|
"homepage": "https://www.midnightdust.eu/",
|
||||||
"sources": "https://github.com/TeamMidnightDust/FastLeaves",
|
"sources": "https://github.com/TeamMidnightDust/CullLeaves",
|
||||||
"issues": "https://github.com/TeamMidnightDust/FastLeaves/issues"
|
"issues": "https://github.com/TeamMidnightDust/CullLeaves/issues"
|
||||||
},
|
},
|
||||||
|
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"icon": "assets/fastleaves/icon.png",
|
"icon": "assets/cullleaves/icon.png",
|
||||||
|
|
||||||
"environment": "client",
|
"environment": "client",
|
||||||
|
|
||||||
"mixins": [
|
"mixins": [
|
||||||
"fastleaves.mixins.json"
|
"cullleaves.mixins.json"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user