-
Notifications
You must be signed in to change notification settings - Fork 5
Drop BQu Mixin #363
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Drop BQu Mixin #363
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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
This file contains hidden or 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 |
|---|---|---|
|
|
@@ -62,15 +62,15 @@ dependencies { | |
| compileOnly "curse.maven:ctm-267602:2915363" // CTM 1.0.2.31 | ||
| runtimeOnly "com.cleanroommc:modularui:2.4.3" // MUI 2.4.3 | ||
|
|
||
| // Debug GTWoodProcessing: 1.2.4 | ||
| // Debug GTWoodProcessing: 1.2.5 | ||
| if (project.debug_all.toBoolean() || project.debug_gtwp.toBoolean()) { | ||
| runtimeOnly "curse.maven:gtwoodprocessing-1093753:6334967" | ||
| runtimeOnly "curse.maven:gtwoodprocessing-1093753:7691291" | ||
| } | ||
|
|
||
| // Debug ImplosionNoBomb: 1.1.0 | ||
| compileOnly rfg.deobf("curse.maven:implosionnobomb-1094386:5731331") | ||
| // Debug ImplosionNoBomb: 1.1.1 | ||
| compileOnly rfg.deobf("curse.maven:implosionnobomb-1094386:7945769") | ||
| if (project.debug_all.toBoolean() || project.debug_inb.toBoolean()) { | ||
| runtimeOnly "curse.maven:implosionnobomb-1094386:5731331" | ||
| runtimeOnly "curse.maven:implosionnobomb-1094386:7945769" | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||
| } | ||
|
|
||
| // Debug ExtraCells2 Additions | ||
|
|
@@ -130,15 +130,10 @@ dependencies { | |
| runtimeOnly rfg.deobf("curse.maven:draconicadditions-314515:3514704") | ||
| } | ||
|
|
||
| // Debug BQu: 4.2.7 | ||
| compileOnly rfg.deobf("curse.maven:better-questing-unofficial-629629:7421294") | ||
| if (project.debug_all.toBoolean() || project.debug_bqu.toBoolean()) { | ||
| runtimeOnly rfg.deobf("curse.maven:better-questing-unofficial-629629:7421294") | ||
| } | ||
|
|
||
| // Debug Avaritia: 3.3.0.47-hotfix1 | ||
| // Avaritia: 3.3.0.48-hotfix7 | ||
| compileOnly rfg.deobf("curse.maven:avaritia-1-1x-unofficial-1165010:7939693") | ||
| if (project.debug_all.toBoolean() || project.debug_avaritia.toBoolean()) { | ||
| runtimeOnly rfg.deobf("curse.maven:avaritia-1-1x-unofficial-1165010:7186329") | ||
| runtimeOnly rfg.deobf("curse.maven:avaritia-1-1x-unofficial-1165010:7939693") | ||
| } | ||
|
|
||
| // Debug GTFO: 1.12.5 | ||
|
|
@@ -150,4 +145,9 @@ dependencies { | |
| if (project.debug_all.toBoolean() || project.debug_jer.toBoolean()) { | ||
| runtimeOnly "curse.maven:just-enough-resources-jer-240630:2728585" | ||
| } | ||
|
|
||
| // Boot error fix | ||
| if (project.debug_all.toBoolean() || project.debug_eio.toBoolean()) { | ||
| runtimeOnly files("libs/EnderCore-1.12.2-0.5.78-core.jar") | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||
| } | ||
| } | ||
This file contains hidden or 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 |
|---|---|---|
|
|
@@ -9,7 +9,4 @@ repositories { | |
| name 'GTCEu Maven' | ||
| url 'https://maven.gtceu.com' | ||
| } | ||
| flatDir { | ||
| dirs 'libs' | ||
| } | ||
| } | ||
This file contains hidden or 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
57 changes: 0 additions & 57 deletions
57
src/main/java/com/github/gtexpert/core/mixins/betterquesting/GuiHomeUpdateMixin.java
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
runtimeOnly の指定に
rfg.deobf()が適用されていません。開発環境では難読化解除されたコードが使用されるため、この指定がないと実行時にクラスやメソッドが見つからずエラーになる可能性があります。他の依存関係との一貫性を保つためにも、rfg.deobf()を使用することを推奨します。