Skip to content
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

feat: 1.20.1 #1685

Merged
merged 40 commits into from
Sep 16, 2023
Merged
Changes from 1 commit
Commits
Show all changes
40 commits
Select commit Hold shift + click to select a range
bb2a1e9
feat: 1.20.1 functionality, begin Lootr compat, begin entity accessor…
bconlon1 Sep 9, 2023
8dcfe82
improv: Hoppers no longer affect locked treasure chests
bconlon1 Sep 10, 2023
d653cff
fix: Remove shadow for book of lore text
bconlon1 Sep 10, 2023
7b38e5f
Merge branch '1.20.1-develop' into feat/bconlon/porting
bconlon1 Sep 10, 2023
20ade17
build: Fix Curios dependency
bconlon1 Sep 10, 2023
018518e
ci: Fix artifact downloads
bconlon1 Sep 10, 2023
0146c22
ci: Fix again
bconlon1 Sep 10, 2023
2a56e5a
refactor: Change minimum Forge version
bconlon1 Sep 11, 2023
681da07
fix: typo
bconlon1 Sep 11, 2023
8e8667b
update: Nitrogen and Cumulus
bconlon1 Sep 11, 2023
6635668
improv: WIP continued lootr compat work
bconlon1 Sep 11, 2023
eb54478
improv: WIP more lootr stuff
bconlon1 Sep 12, 2023
2e0ad65
refactor: remove lootr code
bconlon1 Sep 12, 2023
4196cbb
chore: Todo comments
bconlon1 Sep 12, 2023
da64050
chore: Update CREDITS.txt
bconlon1 Sep 12, 2023
d90ae98
improv: Functional mob accessory behavior
bconlon1 Sep 14, 2023
ca8781c
feat: Armor Trim Materials
bconlon1 Sep 14, 2023
a334da2
feat: Skyroot Hanging Sign
bconlon1 Sep 14, 2023
d2e5bcd
Merge branch '1.20.1-develop' into feat/bconlon/porting
bconlon1 Sep 14, 2023
552b384
chore: Update CREDITS.txt
bconlon1 Sep 14, 2023
4d23174
feat: 1.20 tags
bconlon1 Sep 14, 2023
b0989ca
refactor: RenderSystem and GuiGraphics cleanup
bconlon1 Sep 15, 2023
5d7cad2
refactor: Egg advancement tag and skyroot bed crafting tag
bconlon1 Sep 15, 2023
28d887c
improv: Gloves now use ArmorMaterials
bconlon1 Sep 15, 2023
f4c3c9f
feat: Glove trims support
bconlon1 Sep 15, 2023
993934c
chore: remove comment
bconlon1 Sep 15, 2023
2d67ca2
feat: vanilla material glove trims support
OzPayn Sep 15, 2023
8ee7fd5
feat: Armor Stands support accessories
bconlon1 Sep 15, 2023
e1b6edc
improv: Trim overlay for gloves item
bconlon1 Sep 15, 2023
bc03cdc
refactor: Moa UV map expanded
bconlon1 Sep 15, 2023
2684289
update: Nitrogen 0.1.1->0.1.2
bconlon1 Sep 16, 2023
2275e3a
chore: Update.json
bconlon1 Sep 16, 2023
040e092
chore: Update references to 1.20.1
bconlon1 Sep 16, 2023
bab0f6f
build: Make lootr compileOnly again
bconlon1 Sep 16, 2023
e590f74
improv: Dispeners can equip accessories to armor stands
bconlon1 Sep 16, 2023
ced446c
fix: Silver hearts render again
bconlon1 Sep 16, 2023
b055701
docs: Cape render docs
bconlon1 Sep 16, 2023
0b91d4e
docs: Mixin docs
bconlon1 Sep 16, 2023
af011c6
docs: AetherMixinHooks
bconlon1 Sep 16, 2023
37082dd
docs: entity hooks
bconlon1 Sep 16, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix: Remove shadow for book of lore text
  • Loading branch information
bconlon1 committed Sep 10, 2023
commit d653cffe4c06443315defde6b7b66115afc1899a
Original file line number Diff line number Diff line change
Expand Up @@ -174,6 +174,6 @@ private void drawCenteredBookText(GuiGraphics guiGraphics, Font fontRenderer, Co
}

private void drawBookText(GuiGraphics guiGraphics, Font fontRenderer, FormattedCharSequence sequence, int x, int y) {
guiGraphics.drawString(fontRenderer, sequence, x, y, 4210752);
guiGraphics.drawString(fontRenderer, sequence, x, y, 4210752, false);
}
}