fuck you
This commit is contained in:
@@ -22,7 +22,7 @@ loom {
|
||||
splitEnvironmentSourceSets()
|
||||
|
||||
mods {
|
||||
"scorched-earth" {
|
||||
"scorched_earth" {
|
||||
sourceSet sourceSets.main
|
||||
sourceSet sourceSets.client
|
||||
}
|
||||
|
||||
@@ -10,9 +10,9 @@ loader_version=0.16.14
|
||||
loom_version=1.11-SNAPSHOT
|
||||
|
||||
# Mod Properties
|
||||
mod_version=1.0.0
|
||||
maven_group=com.smithy.scorchedearth
|
||||
archives_base_name=scorched-earth
|
||||
mod_version=0.0.0
|
||||
maven_group=com.smithy.scorched_earth
|
||||
archives_base_name=scorched_earth
|
||||
|
||||
# Dependencies
|
||||
fabric_version=0.92.6+1.20.1
|
||||
@@ -1,4 +1,4 @@
|
||||
package com.smithy.scorchedearth;
|
||||
package com.smithy.scorched_earth;
|
||||
|
||||
import net.fabricmc.api.ClientModInitializer;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
package com.smithy.scorchedearth;
|
||||
package com.smithy.scorched_earth;
|
||||
|
||||
import net.fabricmc.fabric.api.datagen.v1.DataGeneratorEntrypoint;
|
||||
import net.fabricmc.fabric.api.datagen.v1.FabricDataGenerator;
|
||||
@@ -1,4 +1,4 @@
|
||||
package com.smithy.scorchedearth.mixin.client;
|
||||
package com.smithy.scorched_earth.mixin.client;
|
||||
|
||||
import net.minecraft.client.MinecraftClient;
|
||||
import org.spongepowered.asm.mixin.Mixin;
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"required": true,
|
||||
"package": "com.smithy.scorchedearth.mixin.client",
|
||||
"package": "com.smithy.scorched_earth.mixin.client",
|
||||
"compatibilityLevel": "JAVA_17",
|
||||
"client": [
|
||||
"ExampleClientMixin"
|
||||
@@ -1,4 +1,4 @@
|
||||
package com.smithy.scorchedearth;
|
||||
package com.smithy.scorched_earth;
|
||||
|
||||
import net.fabricmc.api.ModInitializer;
|
||||
|
||||
@@ -6,7 +6,7 @@ import org.slf4j.Logger;
|
||||
import org.slf4j.LoggerFactory;
|
||||
|
||||
public class ScorchedEarth implements ModInitializer {
|
||||
public static final String MOD_ID = "scorched-earth";
|
||||
public static final String MOD_ID = "scorched_earth";
|
||||
|
||||
// This logger is used to write text to the console and the log file.
|
||||
// It is considered best practice to use your mod id as the logger's name.
|
||||
@@ -19,6 +19,6 @@ public class ScorchedEarth implements ModInitializer {
|
||||
// However, some things (like resources) may still be uninitialized.
|
||||
// Proceed with mild caution.
|
||||
|
||||
LOGGER.info("Hello Fabric world!");
|
||||
LOGGER.info("man this Earth is " + MOD_ID);
|
||||
}
|
||||
}
|
||||
@@ -1,4 +1,4 @@
|
||||
package com.smithy.scorchedearth.mixin;
|
||||
package com.smithy.scorched_earth.mixin;
|
||||
|
||||
import net.minecraft.server.MinecraftServer;
|
||||
import org.spongepowered.asm.mixin.Mixin;
|
||||
|
Before Width: | Height: | Size: 4.7 KiB After Width: | Height: | Size: 4.7 KiB |
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"schemaVersion": 1,
|
||||
"id": "scorched-earth",
|
||||
"id": "scorched_earth",
|
||||
"version": "${version}",
|
||||
"name": "Scorched Earth",
|
||||
"description": "This is an example description! Tell everyone what your mod is about!",
|
||||
@@ -12,33 +12,31 @@
|
||||
"sources": "https://github.com/FabricMC/fabric-example-mod"
|
||||
},
|
||||
"license": "CC0-1.0",
|
||||
"icon": "assets/scorched-earth/icon.png",
|
||||
"icon": "assets/scorched_earth/icon.png",
|
||||
"environment": "*",
|
||||
"entrypoints": {
|
||||
"main": [
|
||||
"com.smithy.scorchedearth.ScorchedEarth"
|
||||
"com.smithy.scorched_earth.ScorchedEarth"
|
||||
],
|
||||
"client": [
|
||||
"com.smithy.scorchedearth.ScorchedEarthClient"
|
||||
"com.smithy.scorched_earth.ScorchedEarthClient"
|
||||
],
|
||||
"fabric-datagen": [
|
||||
"com.smithy.scorchedearth.ScorchedEarthDataGenerator"
|
||||
"com.smithy.scorched_earth.ScorchedEarthDataGenerator"
|
||||
]
|
||||
},
|
||||
"mixins": [
|
||||
"scorched-earth.mixins.json",
|
||||
"scorched_earth.mixins.json",
|
||||
{
|
||||
"config": "scorched-earth.client.mixins.json",
|
||||
"config": "scorched_earth.client.mixins.json",
|
||||
"environment": "client"
|
||||
}
|
||||
],
|
||||
"depends": {
|
||||
"fabricloader": ">=0.16.14",
|
||||
"fabricloader": ">=0.16.10",
|
||||
"minecraft": "~1.20.1",
|
||||
"java": ">=17",
|
||||
"fabric-api": "*"
|
||||
},
|
||||
"suggests": {
|
||||
"another-mod": "*"
|
||||
}
|
||||
"suggests": {}
|
||||
}
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"required": true,
|
||||
"package": "com.smithy.scorchedearth.mixin",
|
||||
"package": "com.smithy.scorched_earth.mixin",
|
||||
"compatibilityLevel": "JAVA_17",
|
||||
"mixins": [
|
||||
"ExampleMixin"
|
||||
Reference in New Issue
Block a user