Aram Peres

Results 65 comments of Aram Peres

I think a first step would be to load the `generatorName` and `generatorOptions` fields from the `level.dat` file. Then, supporting basic super-flat generation using the layers in `generatorOptions` to set...

Hey @AL1L, just so you're aware, this is a clean-room project and we should abstain from reading decompiled code from the vanilla server. See https://github.com/feather-rs/feather/blob/main/CONTRIBUTING.md#original-code-code-from-minecraft

Is the intended outcome to support multiple protocol versions in the same build (similar to ViaVersion/ProtocolSupport compatibility), or having different builds for each supported version? I think the latter would...

Note: this issue (and therefore the bounty set on it) is about the task of putting all the strings around Glowstone in a file. The task of creating the framework/API...

We contacted Mojang about the licensing of the translation files in the past, which they deflected. To be on the safe side, we decided to exclude the files as they...

As far as I know, only the teleportation to the nether world when colliding with the purple nether portal block is implemented. The formation of the portal isn't.

This is being worked on by @heisluft: #1024 ~@VaiTon has a branch with some progress on this issue: https://github.com/VaiTon/Glowstone/tree/nether-portal~ Reference: #1020

@clabe45 PR #1024 is in progress (under review) and implements the PortalCreateEvent along with the rest of the portal mechanincs.

Paper abstracted their version command by creating a [`VersionFetcher`](https://papermc.io/javadocs/paper/1.14/com/destroystokyo/paper/util/VersionFetcher.html) API (thanks @zachbr!), which we can implement and set in the `UnsafeValues` implementation. This feature is only available in 1.14.

Seems like you are using numerical IDs (data values) to give a potion, which is not supported as of 1.9 (#281) . Please use PotionMeta if you are not already....