-
Notifications
You must be signed in to change notification settings - Fork 184
dragonfly: Updated for 1.26.30. #1268
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
Changes from all commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
aa06f99
feature/1.26.30: Initial commit.
didntpot a7e67f4
world/biome: Register sulfur caves.
didntpot c6dc1f9
chunk/chunk.go: Return sub chunk count from HighestFilledSubChunk.
didntpot f22e161
player/bossbar: Add bossbar overlay support.
didntpot b1ecdaa
player/debug: Add cylinder, pyramid, ellipsoid, and cone shapes.
didntpot f739028
Revert "player/bossbar: Add bossbar overlay support."
didntpot 0adaf74
go.mod, go.sum: Use proper gophertunnel version.
didntpot 37ee64a
go.mod, go.sum: Upgrade df-mc/worldupgrader.
didntpot 954bdaa
Merge branch 'master' into feature/1.26.30
didntpot 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
Binary file not shown.
Binary file not shown.
Binary file not shown.
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
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
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
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 |
|---|---|---|
| @@ -0,0 +1,46 @@ | ||
| package biome | ||
|
|
||
| import "image/color" | ||
|
|
||
| // SulfurCaves ... | ||
| type SulfurCaves struct{} | ||
|
|
||
| // Temperature ... | ||
| func (SulfurCaves) Temperature() float64 { | ||
| return 0.8 | ||
| } | ||
|
|
||
| // Rainfall ... | ||
| func (SulfurCaves) Rainfall() float64 { | ||
| return 0.4 | ||
| } | ||
|
|
||
| // Depth ... | ||
| func (SulfurCaves) Depth() float64 { | ||
| return 0.1 | ||
| } | ||
|
|
||
| // Scale ... | ||
| func (SulfurCaves) Scale() float64 { | ||
| return 0.2 | ||
| } | ||
|
|
||
| // WaterColour ... | ||
| func (SulfurCaves) WaterColour() color.RGBA { | ||
| return color.RGBA{R: 0x60, G: 0xb7, B: 0xff, A: 0xa6} | ||
| } | ||
|
|
||
| // Tags ... | ||
| func (SulfurCaves) Tags() []string { | ||
| return []string{"caves", "sulfur_caves", "overworld", "monster"} | ||
| } | ||
|
|
||
| // String ... | ||
| func (SulfurCaves) String() string { | ||
| return "sulfur_caves" | ||
| } | ||
|
|
||
| // EncodeBiome ... | ||
| func (SulfurCaves) EncodeBiome() int { | ||
| return 194 | ||
| } |
Binary file not shown.
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
Binary file not shown.
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.
seriously?