Skip to content

Commit

Permalink
Runs and can load worlds now.
Browse files Browse the repository at this point in the history
  • Loading branch information
XyperCode committed Jun 4, 2024
1 parent 42f5181 commit c33dbaf
Show file tree
Hide file tree
Showing 11 changed files with 12 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ public List<String> getMixins() {
}

private static String getTrueName(String internalName) {
if (internalName.startsWith("com/ultreon/devices")) {
if (internalName.startsWith("dev/ultreon/devices")) {
return ArchitecturyTarget.getCurrentTarget() + "/" + internalName;
}
return internalName;
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
dev.ultreon.devices.impl.storage.ResourceStorage
dev.ultreon.devices.impl.storage.FileStorage
4 changes: 2 additions & 2 deletions common/src/main/resources/devices-common.mixins.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"required": true,
"minVersion": "0.8",
"package": "com.ultreon.devices.mixin.common",
"package": "dev.ultreon.devices.mixin.common",
"compatibilityLevel": "JAVA_17",
"plugin": "com.ultreon.devices.mixin.common.MixinPlugin",
"plugin": "dev.ultreon.devices.mixin.common.MixinPlugin",
"mixins": [

],
Expand Down
2 changes: 1 addition & 1 deletion fabric/src/main/resources/devices.mixins.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"required": true,
"minVersion": "0.8",
"package": "com.ultreon.devices.mixin.fabric",
"package": "dev.ultreon.devices.mixin.fabric",
"compatibilityLevel": "JAVA_17",
"mixins": [
],
Expand Down
8 changes: 4 additions & 4 deletions forge/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -71,11 +71,11 @@ shadowJar {
configurations = [project.configurations.shadowCommon]
archiveClassifier = "dev-shadow"

// relocate 'org.jetbrains.kotlin', "com.ultreon.devices.shadow.org.jetbrains.kotlin"
// relocate 'org.jetbrains.kotlinx', "com.ultreon.devices.shadow.org.jetbrains.kotlinx"
// relocate 'org.jetbrains.kotlin', "dev.ultreon.devices.shadow.org.jetbrains.kotlin"
// relocate 'org.jetbrains.kotlinx', "dev.ultreon.devices.shadow.org.jetbrains.kotlinx"
//
// relocate 'kotlin', "com.ultreon.devices.shadow.kotlin"
// relocate 'kotlinx', "com.ultreon.devices.shadow.kotlinx"
// relocate 'kotlin', "dev.ultreon.devices.shadow.kotlin"
// relocate 'kotlinx', "dev.ultreon.devices.shadow.kotlinx"
}

remapJar {
Expand Down
2 changes: 1 addition & 1 deletion forge/src/main/resources/devices.mixins.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"required": true,
"minVersion": "0.8",
"package": "com.ultreon.devices.devices.mixin.forge",
"package": "dev.ultreon.devices.devices.mixin.forge",
"compatibilityLevel": "JAVA_17",
"mixins": [
],
Expand Down
2 changes: 1 addition & 1 deletion neoforge/src/main/resources/devices.mixins.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"required": true,
"minVersion": "0.8",
"package": "com.ultreon.devices.devices.mixin.forge",
"package": "dev.ultreon.devices.devices.mixin.forge",
"compatibilityLevel": "JAVA_17",
"mixins": [
],
Expand Down

0 comments on commit c33dbaf

Please sign in to comment.