Skip to content

Commit 1dc4fdd

Browse files
initial commit
1 parent 96ef30e commit 1dc4fdd

3 files changed

Lines changed: 13 additions & 13 deletions

File tree

gradle.properties

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Done to increase the memory available to gradle.
2-
org.gradle.jvmargs=-Xmx1G
2+
org.gradle.jvmargs=-Xmx4G
33
org.gradle.parallel=true
44

55
# IntelliJ IDEA is not yet fully compatible with configuration cache, see: https://github.com/FabricMC/fabric-loom/issues/1349
@@ -8,13 +8,13 @@ org.gradle.configuration-cache=false
88
# Fabric Properties
99
# check these on https://fabricmc.net/develop
1010
minecraft_version=1.21.11
11-
loader_version=0.18.2
12-
loom_version=1.14-SNAPSHOT
11+
loader_version=0.18.4
12+
loom_version=1.15-SNAPSHOT
13+
14+
# Fabric API
15+
fabric_api_version=0.141.2+1.21.11
1316

1417
# Mod Properties
1518
mod_version=1.0.0
16-
maven_group=com.example
17-
archives_base_name=modid
18-
19-
# Dependencies
20-
fabric_version=0.139.4+1.21.11
19+
maven_group=com.tcm
20+
archives_base_name=AetherII

src/main/java/com/example/ExampleMod.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
import org.slf4j.LoggerFactory;
77

88
public class ExampleMod implements ModInitializer {
9-
public static final String MOD_ID = "modid";
9+
public static final String MOD_ID = "aetherii";
1010

1111
// This logger is used to write text to the console and the log file.
1212
// It is considered best practice to use your mod id as the logger's name.

src/main/resources/fabric.mod.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"schemaVersion": 1,
3-
"id": "modid",
3+
"id": "aetherii",
44
"version": "${version}",
55
"name": "Example mod",
66
"description": "This is an example description! Tell everyone what your mod is about!",
@@ -12,7 +12,7 @@
1212
"sources": "https://github.com/FabricMC/fabric-example-mod"
1313
},
1414
"license": "CC0-1.0",
15-
"icon": "assets/modid/icon.png",
15+
"icon": "assets/aetherii/icon.png",
1616
"environment": "*",
1717
"entrypoints": {
1818
"main": [
@@ -23,9 +23,9 @@
2323
]
2424
},
2525
"mixins": [
26-
"modid.mixins.json",
26+
"aetherii.mixins.json",
2727
{
28-
"config": "modid.client.mixins.json",
28+
"config": "aetherii.client.mixins.json",
2929
"environment": "client"
3030
}
3131
],

0 commit comments

Comments
 (0)