-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
48a12f3
commit 82a567d
Showing
247 changed files
with
2,736 additions
and
278 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
* text eol=lf | ||
*.bat text eol=crlf | ||
*.patch text eol=lf | ||
*.java text eol=lf | ||
*.gradle text eol=crlf | ||
*.png binary | ||
*.gif binary | ||
*.exe binary | ||
*.dll binary | ||
*.jar binary | ||
*.lzma binary | ||
*.zip binary | ||
*.pyd binary | ||
*.cfg text eol=lf | ||
*.jks binary |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
name: Release | ||
|
||
on: | ||
push: | ||
tags: | ||
- "v*" | ||
|
||
jobs: | ||
build: | ||
if: | | ||
!contains(github.event.head_commit.message, '[ciskip]') | ||
uses: nanite/workflows/.github/workflows/standard-arch-release.yml@v1 | ||
secrets: | ||
nanite-token: ${{ secrets.NANITE_DEPLOY }} | ||
curse-token: ${{ secrets.CURSE_DEPLOY }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
name: Build & Release | ||
|
||
on: | ||
push: | ||
branches: | ||
- "1.*" | ||
|
||
jobs: | ||
build: | ||
if: | | ||
!contains(github.event.head_commit.message, '[ciskip]') | ||
uses: nanite/workflows/.github/workflows/base-java.yml@v1 | ||
secrets: | ||
nanite-token: ${{ secrets.NANITE_DEPLOY }} | ||
with: | ||
use-snapshots: true | ||
gradle-tasks: build publish |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,35 +1,23 @@ | ||
# gradle | ||
|
||
.gradle/ | ||
build/ | ||
out/ | ||
classes/ | ||
|
||
# eclipse | ||
|
||
bin | ||
*.launch | ||
.settings | ||
.metadata | ||
.classpath | ||
.project | ||
|
||
# idea | ||
|
||
.idea/ | ||
*.iml | ||
out | ||
*.ipr | ||
*.iws | ||
*.iml | ||
.idea/* | ||
!.idea/scopes | ||
|
||
# vscode | ||
|
||
.settings/ | ||
.vscode/ | ||
bin/ | ||
.classpath | ||
.project | ||
|
||
# macos | ||
|
||
*.DS_Store | ||
|
||
# fabric | ||
# gradle | ||
build | ||
.gradle | ||
|
||
run/ | ||
|
||
logs/ | ||
# other | ||
eclipse | ||
run |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
### 2.0.0 | ||
|
||
- Port To Fabric | ||
- Update To Minecraft 1.20 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
plugins { | ||
id 'java' | ||
id 'org.spongepowered.gradle.vanilla' version '0.2.1-SNAPSHOT' | ||
id 'maven-publish' | ||
} | ||
|
||
minecraft { | ||
version(minecraft_version) | ||
} | ||
|
||
dependencies { | ||
compileOnly group:'org.spongepowered', name:'mixin', version:'0.8.5' | ||
implementation(("com.unrealdinnerbone:Trenzalore-Common:${trenzalore_version}+mc${minecraft_version}")) | ||
} | ||
|
||
processResources { | ||
|
||
def buildProps = project.properties.clone() | ||
|
||
filesMatching(['pack.mcmeta']) { | ||
|
||
expand buildProps | ||
} | ||
} | ||
|
||
publishing { | ||
publications { | ||
mavenJava(MavenPublication) { | ||
groupId project.group | ||
artifactId project.archivesBaseName | ||
version project.version | ||
from components.java | ||
} | ||
} | ||
|
||
repositories { | ||
if (ENV.NANITE_TOKEN) { | ||
maven { | ||
url "https://maven.nanite.dev/${SNAPSHOT ? "snapshots" : "releases"}" | ||
credentials { | ||
username = "nanite" | ||
password = "${ENV.NANITE_TOKEN}" | ||
} | ||
} | ||
} | ||
} | ||
} |
11 changes: 11 additions & 0 deletions
11
Common/src/main/java/com/unrealdinnerbone/ibicf/IBICF.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
package com.unrealdinnerbone.ibicf; | ||
|
||
public class IBICF { | ||
public static final String MOD_ID = "ibicf"; | ||
|
||
public static void init() { | ||
//Load config on mod startup not on first render | ||
IBICFConfig.CONFIG.get(); | ||
} | ||
|
||
} |
10 changes: 10 additions & 0 deletions
10
Common/src/main/java/com/unrealdinnerbone/ibicf/IBICFConfig.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
package com.unrealdinnerbone.ibicf; | ||
|
||
import com.google.common.base.Suppliers; | ||
import com.unrealdinnerbone.trenzalore.api.config.ConfigManger; | ||
|
||
import java.util.function.Supplier; | ||
|
||
public record IBICFConfig(float cloudLevel) { | ||
public static Supplier<IBICFConfig> CONFIG = Suppliers.memoize(() -> ConfigManger.getOrCreateConfig(IBICF.MOD_ID, IBICFConfig.class, () -> new IBICFConfig(128))); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
29 changes: 14 additions & 15 deletions
29
src/main/resources/ibicf.mixins.json → Common/src/main/resources/ibicf.mixins.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,14 @@ | ||
{ | ||
"required": true, | ||
"minVersion": "0.8", | ||
"package": "com.unrealdinnerbone.ibicf.mixin", | ||
"refmap": "ibicf.refmap.json", | ||
"compatibilityLevel": "JAVA_17", | ||
"mixins": [ | ||
], | ||
"client": [ | ||
"DimensionRenderInfoMixin" | ||
], | ||
"injectors": { | ||
"defaultRequire": 1 | ||
} | ||
} | ||
{ | ||
"required": true, | ||
"minVersion": "0.8", | ||
"package": "com.unrealdinnerbone.ibicf.mixin", | ||
"compatibilityLevel": "JAVA_17", | ||
"refmap": "ibicf.refmap.json", | ||
"mixins": [ | ||
"DimensionRenderInfoMixin" | ||
], | ||
"injectors": { | ||
"defaultRequire": 1 | ||
} | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"pack": { | ||
"description": "${mod_name}", | ||
"pack_format": 8 | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,89 @@ | ||
plugins { | ||
id 'fabric-loom' version '1.0-SNAPSHOT' | ||
id 'maven-publish' | ||
id 'idea' | ||
id 'net.darkhax.curseforgegradle' version '1.0.14' | ||
} | ||
|
||
Project commonProject = parent == rootProject ? parent.project("Common") : parent.project("IBICF-Common") | ||
|
||
dependencies { | ||
minecraft "com.mojang:minecraft:${minecraft_version}" | ||
mappings loom.officialMojangMappings() | ||
modImplementation "net.fabricmc:fabric-loader:${fabric_loader_version}" | ||
modImplementation "net.fabricmc.fabric-api:fabric-api:${fabric_version}" | ||
modImplementation(("com.unrealdinnerbone:Trenzalore-Fabric:${trenzalore_version}+mc${minecraft_version}")) | ||
implementation commonProject | ||
} | ||
|
||
loom { | ||
mixin { | ||
defaultRefmapName = "${mod_id}.refmap.json" | ||
} | ||
runs { | ||
client { | ||
client() | ||
setConfigName("Fabric Client") | ||
ideConfigGenerated(true) | ||
vmArg("-Dmixin.debug.export=true") | ||
runDir("run_client") | ||
} | ||
server { | ||
server() | ||
setConfigName("Fabric Server") | ||
ideConfigGenerated(true) | ||
vmArg("-Dmixin.debug.export=true") | ||
runDir("run_server") | ||
} | ||
} | ||
} | ||
|
||
|
||
processResources { | ||
from commonProject.sourceSets.main.resources | ||
|
||
def buildProps = project.properties.clone() | ||
buildProps.put("version", project.version) | ||
buildProps.put("trenzalore_version", parent.property("trenzalore_version")) | ||
buildProps.put("minecraft_version", parent.property("minecraft_version")) | ||
filesMatching("fabric.mod.json") { | ||
expand buildProps | ||
} | ||
} | ||
|
||
tasks.withType(JavaCompile) { | ||
source(commonProject.sourceSets.main.allSource) | ||
} | ||
|
||
publishing { | ||
publications { | ||
mavenJava(MavenPublication) { | ||
groupId project.group | ||
artifactId project.archivesBaseName + "-" + project.name | ||
version project.version | ||
from components.java | ||
} | ||
} | ||
|
||
repositories { | ||
if (ENV.NANITE_TOKEN) { | ||
maven { | ||
url "https://maven.nanite.dev/${SNAPSHOT ? "snapshots" : "releases"}" | ||
credentials { | ||
username = "nanite" | ||
password = "${ENV.NANITE_TOKEN}" | ||
} | ||
} | ||
} | ||
} | ||
} | ||
|
||
task curseforgePublish(type: net.darkhax.curseforgegradle.TaskPublishCurseForge) { | ||
|
||
apiToken = ENV.CURSE_TOKEN | ||
def mainFile = upload(findProperty('curse_id'), remapJar) | ||
mainFile.changelog = file("../CHANGELOG.md") | ||
mainFile.releaseType = "beta" | ||
mainFile.changelogType = "markdown" | ||
mainFile.addJavaVersion("Java 17") | ||
} |
Binary file added
BIN
+1.1 KB
...ent/.mixin.out/class/net/fabricmc/fabric/mixin/client/keybinding/KeyBindingAccessor.class
Binary file not shown.
Binary file added
BIN
+989 Bytes
...c/fabric/mixin/client/particle/ParticleManagerAccessor$SimpleSpriteProviderAccessor.class
Binary file not shown.
Binary file added
BIN
+1.19 KB
.../.mixin.out/class/net/fabricmc/fabric/mixin/client/particle/ParticleManagerAccessor.class
Binary file not shown.
Binary file added
BIN
+893 Bytes
...ixin.out/class/net/fabricmc/fabric/mixin/client/rendering/EntityModelLayersAccessor.class
Binary file not shown.
Binary file added
BIN
+830 Bytes
...n.out/class/net/fabricmc/fabric/mixin/client/rendering/LivingEntityRendererAccessor.class
Binary file not shown.
Binary file added
BIN
+493 Bytes
...n_client/.mixin.out/class/net/fabricmc/fabric/mixin/client/sound/SoundInstanceMixin.class
Binary file not shown.
Binary file added
BIN
+865 Bytes
...run_client/.mixin.out/class/net/fabricmc/fabric/mixin/command/ArgumentTypesAccessor.class
Binary file not shown.
Binary file added
BIN
+1.74 KB
...nt/.mixin.out/class/net/fabricmc/fabric/mixin/command/EntitySelectorOptionsAccessor.class
Binary file not shown.
Binary file added
BIN
+1.36 KB
..._client/.mixin.out/class/net/fabricmc/fabric/mixin/content/registry/AxeItemAccessor.class
Binary file not shown.
Binary file added
BIN
+975 Bytes
..._client/.mixin.out/class/net/fabricmc/fabric/mixin/content/registry/HoeItemAccessor.class
Binary file not shown.
Binary file added
BIN
+833 Bytes
...ient/.mixin.out/class/net/fabricmc/fabric/mixin/content/registry/ShovelItemAccessor.class
Binary file not shown.
Binary file added
BIN
+1.68 KB
.../.mixin.out/class/net/fabricmc/fabric/mixin/content/registry/VillagerEntityAccessor.class
Binary file not shown.
Binary file added
BIN
+534 Bytes
...xin.out/class/net/fabricmc/fabric/mixin/event/interaction/client/KeyBindingAccessor.class
Binary file not shown.
Binary file added
BIN
+1.94 KB
...ic/run_client/.mixin.out/class/net/fabricmc/fabric/mixin/gamerule/GameRulesAccessor.class
Binary file not shown.
Binary file added
BIN
+1.45 KB
...nt/.mixin.out/class/net/fabricmc/fabric/mixin/gamerule/GameRulesBooleanRuleAccessor.class
Binary file not shown.
Binary file added
BIN
+602 Bytes
...client/.mixin.out/class/net/fabricmc/fabric/mixin/gamerule/GameRulesIntRuleAccessor.class
Binary file not shown.
Binary file added
BIN
+712 Bytes
...c/run_client/.mixin.out/class/net/fabricmc/fabric/mixin/itemgroup/ItemGroupAccessor.class
Binary file not shown.
Binary file added
BIN
+535 Bytes
...un_client/.mixin.out/class/net/fabricmc/fabric/mixin/lookup/BlockEntityTypeAccessor.class
Binary file not shown.
Binary file added
BIN
+726 Bytes
Fabric/run_client/.mixin.out/class/net/fabricmc/fabric/mixin/loot/LootTableAccessor.class
Binary file not shown.
Binary file added
BIN
+575 Bytes
...ass/net/fabricmc/fabric/mixin/networking/accessor/ServerLoginNetworkHandlerAccessor.class
Binary file not shown.
Binary file added
BIN
+497 Bytes
...lass/net/fabricmc/fabric/mixin/networking/accessor/ServerPlayNetworkHandlerAccessor.class
Binary file not shown.
Binary file added
BIN
+605 Bytes
.../fabricmc/fabric/mixin/networking/client/accessor/ClientLoginNetworkHandlerAccessor.class
Binary file not shown.
Binary file added
BIN
+682 Bytes
.../class/net/fabricmc/fabric/mixin/networking/client/accessor/MinecraftClientAccessor.class
Binary file not shown.
Binary file added
BIN
+665 Bytes
...ent/.mixin.out/class/net/fabricmc/fabric/mixin/object/builder/AbstractBlockAccessor.class
Binary file not shown.
Binary file added
BIN
+3.51 KB
...in.out/class/net/fabricmc/fabric/mixin/object/builder/AbstractBlockSettingsAccessor.class
Binary file not shown.
Binary file added
BIN
+970 Bytes
...out/class/net/fabricmc/fabric/mixin/object/builder/DefaultAttributeRegistryAccessor.class
Binary file not shown.
Binary file added
BIN
+1.41 KB
...mixin.out/class/net/fabricmc/fabric/mixin/registry/sync/DebugChunkGeneratorAccessor.class
Binary file not shown.
Binary file added
BIN
+864 Bytes
..._client/.mixin.out/class/net/fabricmc/fabric/mixin/registry/sync/RegistriesAccessor.class
Binary file not shown.
Binary file added
BIN
+372 Bytes
....mixin.out/class/net/fabricmc/fabric/mixin/rendering/data/attachment/WorldViewMixin.class
Binary file not shown.
Binary file added
BIN
+588 Bytes
Fabric/run_client/.mixin.out/class/net/fabricmc/fabric/mixin/screen/ScreenAccessor.class
Binary file not shown.
Binary file added
BIN
+389 Bytes
...in.out/class/net/fabricmc/fabric/mixin/screenhandler/NamedScreenHandlerFactoryMixin.class
Binary file not shown.
Binary file added
BIN
+459 Bytes
...c/run_client/.mixin.out/class/net/fabricmc/fabric/mixin/transfer/BucketItemAccessor.class
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+10.1 KB
Fabric/run_client/.mixin.out/class/net/minecraft/client/KeyMapping.class
Binary file not shown.
Binary file added
BIN
+30.6 KB
Fabric/run_client/.mixin.out/class/net/minecraft/client/KeyboardHandler.class
Binary file not shown.
Binary file added
BIN
+148 KB
Fabric/run_client/.mixin.out/class/net/minecraft/client/Minecraft.class
Binary file not shown.
Binary file added
BIN
+18.9 KB
Fabric/run_client/.mixin.out/class/net/minecraft/client/MouseHandler.class
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+12.6 KB
Fabric/run_client/.mixin.out/class/net/minecraft/client/color/block/BlockColors.class
Binary file not shown.
Binary file added
BIN
+9.95 KB
Fabric/run_client/.mixin.out/class/net/minecraft/client/color/item/ItemColors.class
Binary file not shown.
Binary file added
BIN
+45.7 KB
Fabric/run_client/.mixin.out/class/net/minecraft/client/gui/Gui.class
Binary file not shown.
Binary file added
BIN
+36.1 KB
.../run_client/.mixin.out/class/net/minecraft/client/gui/components/DebugScreenOverlay.class
Binary file not shown.
Binary file added
BIN
+28.3 KB
Fabric/run_client/.mixin.out/class/net/minecraft/client/gui/font/FontManager.class
Binary file not shown.
Binary file added
BIN
+37.6 KB
Fabric/run_client/.mixin.out/class/net/minecraft/client/gui/screens/Screen.class
Binary file not shown.
Binary file added
BIN
+46.4 KB
.../.mixin.out/class/net/minecraft/client/gui/screens/worldselection/CreateWorldScreen.class
Binary file not shown.
Binary file added
BIN
+21.6 KB
Fabric/run_client/.mixin.out/class/net/minecraft/client/model/geom/LayerDefinitions.class
Binary file not shown.
Binary file added
BIN
+15.9 KB
Fabric/run_client/.mixin.out/class/net/minecraft/client/model/geom/ModelLayers.class
Binary file not shown.
Binary file added
BIN
+15.9 KB
....mixin.out/class/net/minecraft/client/multiplayer/ClientHandshakePacketListenerImpl.class
Binary file not shown.
Binary file added
BIN
+48.6 KB
Fabric/run_client/.mixin.out/class/net/minecraft/client/multiplayer/ClientLevel.class
Binary file not shown.
Binary file added
BIN
+169 KB
...c/run_client/.mixin.out/class/net/minecraft/client/multiplayer/ClientPacketListener.class
Binary file not shown.
Binary file added
BIN
+19 KB
Fabric/run_client/.mixin.out/class/net/minecraft/client/multiplayer/chat/ChatListener.class
Binary file not shown.
Binary file added
BIN
+2.81 KB
...ient/.mixin.out/class/net/minecraft/client/particle/ParticleEngine$MutableSpriteSet.class
Binary file not shown.
Binary file added
BIN
+54.5 KB
Fabric/run_client/.mixin.out/class/net/minecraft/client/particle/ParticleEngine.class
Binary file not shown.
Binary file added
BIN
+44.6 KB
Fabric/run_client/.mixin.out/class/net/minecraft/client/player/LocalPlayer.class
Binary file not shown.
Binary file added
BIN
+16.9 KB
...ient/.mixin.out/class/net/minecraft/client/renderer/BlockEntityWithoutLevelRenderer.class
Binary file not shown.
Binary file added
BIN
+66 KB
Fabric/run_client/.mixin.out/class/net/minecraft/client/renderer/GameRenderer.class
Binary file not shown.
Binary file added
BIN
+24.4 KB
Fabric/run_client/.mixin.out/class/net/minecraft/client/renderer/ItemInHandRenderer.class
Binary file not shown.
Binary file added
BIN
+5.13 KB
Fabric/run_client/.mixin.out/class/net/minecraft/client/renderer/ItemModelShaper.class
Binary file not shown.
Binary file added
BIN
+138 KB
Fabric/run_client/.mixin.out/class/net/minecraft/client/renderer/LevelRenderer.class
Binary file not shown.
Binary file added
BIN
+5.29 KB
Fabric/run_client/.mixin.out/class/net/minecraft/client/renderer/ShaderInstance$1.class
Binary file not shown.
Binary file added
BIN
+19.5 KB
Fabric/run_client/.mixin.out/class/net/minecraft/client/renderer/ShaderInstance.class
Binary file not shown.
Binary file added
BIN
+15.5 KB
Fabric/run_client/.mixin.out/class/net/minecraft/client/renderer/Sheets.class
Binary file not shown.
Binary file added
BIN
+11.6 KB
...n_client/.mixin.out/class/net/minecraft/client/renderer/block/BlockRenderDispatcher.class
Binary file not shown.
Binary file added
BIN
+25.1 KB
...run_client/.mixin.out/class/net/minecraft/client/renderer/block/LiquidBlockRenderer.class
Binary file not shown.
Binary file added
BIN
+20.6 KB
.../run_client/.mixin.out/class/net/minecraft/client/renderer/block/ModelBlockRenderer.class
Binary file not shown.
Binary file added
BIN
+9.14 KB
...ent/.mixin.out/class/net/minecraft/client/renderer/blockentity/BlockEntityRenderers.class
Binary file not shown.
Binary file added
BIN
+29.4 KB
...ic/run_client/.mixin.out/class/net/minecraft/client/renderer/entity/EntityRenderers.class
Binary file not shown.
Binary file added
BIN
+21.6 KB
Fabric/run_client/.mixin.out/class/net/minecraft/client/renderer/entity/ItemRenderer.class
Binary file not shown.
Binary file added
BIN
+15.1 KB
...n_client/.mixin.out/class/net/minecraft/client/renderer/entity/LivingEntityRenderer.class
Binary file not shown.
Binary file added
BIN
+7.42 KB
...c/run_client/.mixin.out/class/net/minecraft/client/renderer/entity/layers/CapeLayer.class
Binary file not shown.
Binary file added
BIN
+17.5 KB
...ent/.mixin.out/class/net/minecraft/client/renderer/entity/layers/HumanoidArmorLayer.class
Binary file not shown.
Binary file added
BIN
+12.1 KB
Fabric/run_client/.mixin.out/class/net/minecraft/client/renderer/texture/TextureAtlas.class
Binary file not shown.
Binary file added
BIN
+18.8 KB
...ic/run_client/.mixin.out/class/net/minecraft/client/renderer/texture/TextureManager.class
Binary file not shown.
Binary file added
BIN
+10.6 KB
Fabric/run_client/.mixin.out/class/net/minecraft/client/resources/ClientPackSource.class
Binary file not shown.
Binary file added
BIN
+9.1 KB
...run_client/.mixin.out/class/net/minecraft/client/resources/language/LanguageManager.class
Binary file not shown.
Binary file added
BIN
+3.45 KB
Fabric/run_client/.mixin.out/class/net/minecraft/client/resources/model/BakedModel.class
Binary file not shown.
Binary file added
BIN
+44.1 KB
Fabric/run_client/.mixin.out/class/net/minecraft/client/resources/model/ModelBakery.class
Binary file not shown.
Binary file added
BIN
+30.5 KB
Fabric/run_client/.mixin.out/class/net/minecraft/client/resources/model/ModelManager.class
Binary file not shown.
Binary file added
BIN
+8.17 KB
...un_client/.mixin.out/class/net/minecraft/client/resources/model/MultiPartBakedModel.class
Binary file not shown.
Binary file added
BIN
+7.39 KB
...run_client/.mixin.out/class/net/minecraft/client/resources/model/WeightedBakedModel.class
Binary file not shown.
Binary file added
BIN
+2.01 KB
Fabric/run_client/.mixin.out/class/net/minecraft/client/resources/sounds/SoundInstance.class
Binary file not shown.
Binary file added
BIN
+27 KB
Fabric/run_client/.mixin.out/class/net/minecraft/client/sounds/SoundEngine.class
Binary file not shown.
Binary file added
BIN
+16.2 KB
Fabric/run_client/.mixin.out/class/net/minecraft/client/sounds/SoundManager.class
Binary file not shown.
Binary file added
BIN
+27.5 KB
...ent/.mixin.out/class/net/minecraft/commands/arguments/selector/EntitySelectorParser.class
Binary file not shown.
Binary file added
BIN
+38.2 KB
...n.out/class/net/minecraft/commands/arguments/selector/options/EntitySelectorOptions.class
Binary file not shown.
Binary file added
BIN
+16.8 KB
...un_client/.mixin.out/class/net/minecraft/commands/synchronization/ArgumentTypeInfos.class
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+42.4 KB
Fabric/run_client/.mixin.out/class/net/minecraft/core/MappedRegistry.class
Binary file not shown.
Binary file added
BIN
+12.9 KB
Fabric/run_client/.mixin.out/class/net/minecraft/core/RegistryCodecs.class
Binary file not shown.
Binary file added
BIN
+42.8 KB
Fabric/run_client/.mixin.out/class/net/minecraft/core/registries/BuiltInRegistries.class
Binary file not shown.
Binary file added
BIN
+26.4 KB
Fabric/run_client/.mixin.out/class/net/minecraft/network/Connection.class
Binary file not shown.
Binary file added
BIN
+11.9 KB
Fabric/run_client/.mixin.out/class/net/minecraft/server/Bootstrap.class
Binary file not shown.
Binary file added
BIN
+100 KB
Fabric/run_client/.mixin.out/class/net/minecraft/server/MinecraftServer.class
Binary file not shown.
Binary file added
BIN
+92.5 KB
Fabric/run_client/.mixin.out/class/net/minecraft/server/level/ServerLevel.class
Binary file not shown.
Binary file added
BIN
+91.1 KB
Fabric/run_client/.mixin.out/class/net/minecraft/server/level/ServerPlayer.class
Binary file not shown.
Binary file added
BIN
+103 KB
...n_client/.mixin.out/class/net/minecraft/server/network/ServerGamePacketListenerImpl.class
Binary file not shown.
Binary file added
BIN
+17.1 KB
..._client/.mixin.out/class/net/minecraft/server/network/ServerLoginPacketListenerImpl.class
Binary file not shown.
Binary file added
BIN
+9.1 KB
...run_client/.mixin.out/class/net/minecraft/server/packs/repository/BuiltInPackSource.class
Binary file not shown.
Binary file added
BIN
+10.8 KB
Fabric/run_client/.mixin.out/class/net/minecraft/server/packs/repository/Pack.class
Binary file not shown.
Binary file added
BIN
+10.3 KB
...ic/run_client/.mixin.out/class/net/minecraft/server/packs/repository/PackRepository.class
Binary file not shown.
Binary file added
BIN
+23.8 KB
...lient/.mixin.out/class/net/minecraft/server/packs/resources/FallbackResourceManager.class
Binary file not shown.
Binary file added
BIN
+10.8 KB
...ient/.mixin.out/class/net/minecraft/server/packs/resources/MultiPackResourceManager.class
Binary file not shown.
Binary file added
BIN
+8.31 KB
...ent/.mixin.out/class/net/minecraft/server/packs/resources/ReloadableResourceManager.class
Binary file not shown.
Binary file added
BIN
+4.07 KB
Fabric/run_client/.mixin.out/class/net/minecraft/server/packs/resources/Resource.class
Binary file not shown.
Binary file added
BIN
+5.98 KB
...mixin.out/class/net/minecraft/server/packs/resources/SimplePreparableReloadListener.class
Binary file not shown.
Binary file added
BIN
+13.4 KB
...n_client/.mixin.out/class/net/minecraft/server/packs/resources/SimpleReloadInstance.class
Binary file not shown.
Binary file added
BIN
+18.6 KB
...ent/.mixin.out/class/net/minecraft/util/datafix/fixes/StructuresBecomeConfiguredFix.class
Binary file not shown.
Binary file added
BIN
+902 Bytes
Fabric/run_client/.mixin.out/class/net/minecraft/world/MenuProvider.class
Binary file not shown.
Binary file added
BIN
+10.3 KB
Fabric/run_client/.mixin.out/class/net/minecraft/world/SimpleContainer.class
Binary file not shown.
Binary file added
BIN
+124 KB
Fabric/run_client/.mixin.out/class/net/minecraft/world/entity/Entity.class
Binary file not shown.
Binary file added
BIN
+126 KB
Fabric/run_client/.mixin.out/class/net/minecraft/world/entity/LivingEntity.class
Binary file not shown.
Binary file added
BIN
+13.2 KB
..._client/.mixin.out/class/net/minecraft/world/entity/ai/attributes/DefaultAttributes.class
Binary file not shown.
Binary file added
BIN
+50.8 KB
Fabric/run_client/.mixin.out/class/net/minecraft/world/entity/npc/Villager.class
Binary file not shown.
Binary file added
BIN
+82.8 KB
Fabric/run_client/.mixin.out/class/net/minecraft/world/entity/player/Player.class
Binary file not shown.
Binary file added
BIN
+32.8 KB
Fabric/run_client/.mixin.out/class/net/minecraft/world/entity/vehicle/Boat.class
Binary file not shown.
Binary file added
BIN
+11.3 KB
Fabric/run_client/.mixin.out/class/net/minecraft/world/item/ArmorItem.class
Binary file not shown.
Binary file added
BIN
+10.8 KB
Fabric/run_client/.mixin.out/class/net/minecraft/world/item/AxeItem.class
Binary file not shown.
Binary file added
BIN
+14 KB
Fabric/run_client/.mixin.out/class/net/minecraft/world/item/BucketItem.class
Binary file not shown.
Binary file added
BIN
+12.6 KB
Fabric/run_client/.mixin.out/class/net/minecraft/world/item/CreativeModeTab.class
Binary file not shown.
Binary file added
BIN
+2.64 KB
...aft/world/item/CreativeModeTabs$1ItemGroupPosition$3381575d8bd74ca9be495dee9fc177ca.class
Binary file not shown.
Binary file added
BIN
+86 KB
Fabric/run_client/.mixin.out/class/net/minecraft/world/item/CreativeModeTabs.class
Binary file not shown.
Binary file added
BIN
+8.07 KB
Fabric/run_client/.mixin.out/class/net/minecraft/world/item/DiggerItem.class
Binary file not shown.
Binary file added
BIN
+9.8 KB
Fabric/run_client/.mixin.out/class/net/minecraft/world/item/HoeItem.class
Binary file not shown.
Binary file added
BIN
+10.5 KB
Fabric/run_client/.mixin.out/class/net/minecraft/world/item/HoneycombItem.class
Binary file not shown.
Binary file added
BIN
+21.9 KB
Fabric/run_client/.mixin.out/class/net/minecraft/world/item/Item.class
Binary file not shown.
Binary file added
BIN
+52.7 KB
Fabric/run_client/.mixin.out/class/net/minecraft/world/item/ItemStack.class
Binary file not shown.
Binary file added
BIN
+9.46 KB
Fabric/run_client/.mixin.out/class/net/minecraft/world/item/ShearsItem.class
Binary file not shown.
Binary file added
BIN
+7.68 KB
Fabric/run_client/.mixin.out/class/net/minecraft/world/item/ShovelItem.class
Binary file not shown.
Binary file added
BIN
+8.99 KB
Fabric/run_client/.mixin.out/class/net/minecraft/world/item/SwordItem.class
Binary file not shown.
Binary file added
BIN
+15.6 KB
Fabric/run_client/.mixin.out/class/net/minecraft/world/item/crafting/Ingredient.class
Binary file not shown.
Binary file added
BIN
+7.02 KB
Fabric/run_client/.mixin.out/class/net/minecraft/world/item/crafting/Recipe.class
Binary file not shown.
Binary file added
BIN
+7.31 KB
Fabric/run_client/.mixin.out/class/net/minecraft/world/level/GameRules$BooleanValue.class
Binary file not shown.
Binary file added
BIN
+7.85 KB
Fabric/run_client/.mixin.out/class/net/minecraft/world/level/GameRules$IntegerValue.class
Binary file not shown.
Binary file added
BIN
+3.43 KB
Fabric/run_client/.mixin.out/class/net/minecraft/world/level/GameRules$Key.class
Binary file not shown.
Binary file added
BIN
+19.1 KB
Fabric/run_client/.mixin.out/class/net/minecraft/world/level/GameRules.class
Binary file not shown.
Binary file added
BIN
+50.5 KB
Fabric/run_client/.mixin.out/class/net/minecraft/world/level/Level.class
Binary file not shown.
Binary file added
BIN
+11.2 KB
Fabric/run_client/.mixin.out/class/net/minecraft/world/level/LevelReader.class
Binary file not shown.
Binary file added
BIN
+11.9 KB
Fabric/run_client/.mixin.out/class/net/minecraft/world/level/biome/BiomeSource.class
Binary file not shown.
Binary file added
BIN
+11.7 KB
...c/run_client/.mixin.out/class/net/minecraft/world/level/biome/MultiNoiseBiomeSource.class
Binary file not shown.
Binary file added
BIN
+4.18 KB
...t/class/net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList$Preset$1.class
Binary file not shown.
Binary file added
BIN
+12.6 KB
Fabric/run_client/.mixin.out/class/net/minecraft/world/level/biome/TheEndBiomeSource.class
Binary file not shown.
Binary file added
BIN
+40.4 KB
Fabric/run_client/.mixin.out/class/net/minecraft/world/level/block/Block.class
Binary file not shown.
Binary file added
BIN
+16.8 KB
Fabric/run_client/.mixin.out/class/net/minecraft/world/level/block/DetectorRailBlock.class
Binary file not shown.
Binary file added
BIN
+8.02 KB
Fabric/run_client/.mixin.out/class/net/minecraft/world/level/block/DropperBlock.class
Binary file not shown.
Binary file added
BIN
+27.4 KB
Fabric/run_client/.mixin.out/class/net/minecraft/world/level/block/FireBlock.class
Binary file not shown.
Binary file added
BIN
+7.18 KB
Fabric/run_client/.mixin.out/class/net/minecraft/world/level/block/WeatheringCopper.class
Binary file not shown.
Binary file added
BIN
+30 KB
.../.mixin.out/class/net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity.class
Binary file not shown.
Binary file added
BIN
+12.5 KB
Fabric/run_client/.mixin.out/class/net/minecraft/world/level/block/entity/BlockEntity.class
Binary file not shown.
Binary file added
BIN
+29.9 KB
.../run_client/.mixin.out/class/net/minecraft/world/level/block/entity/BlockEntityType.class
Binary file not shown.
Binary file added
BIN
+12.7 KB
...ent/.mixin.out/class/net/minecraft/world/level/block/entity/BrewingStandBlockEntity.class
Binary file not shown.
Binary file added
BIN
+1.96 KB
...lock/entity/ChiseledBookShelfBlockEntity$Anonymous$b8f8620d128e47edb91151a5b6a613d3.class
Binary file not shown.
Binary file added
BIN
+10.4 KB
...mixin.out/class/net/minecraft/world/level/block/entity/ChiseledBookShelfBlockEntity.class
Binary file not shown.
Binary file added
BIN
+25.4 KB
...un_client/.mixin.out/class/net/minecraft/world/level/block/entity/HopperBlockEntity.class
Binary file not shown.
Binary file added
BIN
+10.9 KB
...n.out/class/net/minecraft/world/level/block/entity/RandomizableContainerBlockEntity.class
Binary file not shown.
Binary file added
BIN
+20.9 KB
...nt/.mixin.out/class/net/minecraft/world/level/block/state/BlockBehaviour$Properties.class
Binary file not shown.
Binary file added
BIN
+22 KB
...ic/run_client/.mixin.out/class/net/minecraft/world/level/block/state/BlockBehaviour.class
Binary file not shown.
Binary file added
BIN
+3.17 KB
Fabric/run_client/.mixin.out/class/net/minecraft/world/level/block/state/BlockState.class
Binary file not shown.
Binary file added
BIN
+37.6 KB
Fabric/run_client/.mixin.out/class/net/minecraft/world/level/chunk/LevelChunk.class
Binary file not shown.
Binary file added
BIN
+12.2 KB
Fabric/run_client/.mixin.out/class/net/minecraft/world/level/levelgen/DebugLevelSource.class
Binary file not shown.
Binary file added
BIN
+24.4 KB
...et/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager.class
Binary file not shown.
Binary file added
BIN
+10.4 KB
Fabric/run_client/.mixin.out/class/net/minecraft/world/level/material/Fluid.class
Binary file not shown.
Binary file added
BIN
+23.8 KB
.../run_client/.mixin.out/class/net/minecraft/world/level/storage/loot/LootDataManager.class
Binary file not shown.
Binary file added
BIN
+7.06 KB
...un_client/.mixin.out/class/net/minecraft/world/level/storage/loot/LootTable$Builder.class
Binary file not shown.
Binary file added
BIN
+15 KB
Fabric/run_client/.mixin.out/class/net/minecraft/world/level/storage/loot/LootTable.class
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
#Indigo properties file | ||
#Thu Jun 08 10:15:28 CDT 2023 | ||
debug-compare-lighting=auto | ||
fix-exterior-vertex-lighting=auto | ||
ambient-occlusion-mode=hybrid | ||
always-tesselate-blocks=auto | ||
fix-smooth-lighting-offset=auto | ||
fix-luminous-block-ambient-occlusion=auto |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"cloudLevel": 128.0 | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{ | ||
"boatFix": true, | ||
"fullBruteGoldArmor": true, | ||
"poisonArrowsInJungleTemples": true | ||
} |
Oops, something went wrong.