Skip to content

Commit

Permalink
mmmm mixins
Browse files Browse the repository at this point in the history
  • Loading branch information
JunePrimavera committed Dec 30, 2023
1 parent e112d76 commit dd1e0d4
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
package io.github.teampropulsive.propulsive;

import net.fabricmc.api.ClientModInitializer;

import java.util.ArrayList;
import java.util.List;

public class PropulsiveClient implements ClientModInitializer {
public static List<String[]> capes = new ArrayList<>();
@Override
public void onInitializeClient() {
// Capes
capes.add(new String[]{"9e784cc7-753d-4655-89be-c196eed1a274", "primavera"});
capes.add(new String[]{"56db0044-9fc8-4ae3-83d6-1adee75aa799", "jamiscus"});
capes.add(new String[]{"cd285b68-5039-412b-8ef1-35470223221d", "potato"});
capes.add(new String[]{"b641da4d-908f-4848-8576-3bbe56ab2efa", "haskeller"});
}
}
Binary file added src/main/resources/assets/propulsive/icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions src/main/resources/fabric.mod.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@
"entrypoints": {
"main": [
"io.github.teampropulsive.propulsive.Propulsive"
],
"client": [
"io.github.teampropulsive.propulsive.PropulsiveClient"
]
},
"mixins": [
Expand Down
2 changes: 0 additions & 2 deletions src/main/resources/propulsive.mixins.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,6 @@
"compatibilityLevel": "JAVA_17",
"mixins": [
],
"client": [
],
"injectors": {
"defaultRequire": 1
}
Expand Down

0 comments on commit dd1e0d4

Please sign in to comment.