Simon816

Results 55 comments of Simon816

> Build log: : error: undefined hidden symbol: SHA256_Update I have found that this is caused by the use of `inline` in the function declarations. ROCm uses clang to compile...

`dimensionType: topography:dim_0` that is not a vanilla dimension type, which could be why the dimension ID is not as expected.

I don't actually have an account on the spigot forum, but anyway, I suggest to add this ability to make it self-service.

Isn't this just [`ScheduledBlockUpdate`](https://github.com/SpongePowered/SpongeAPI/blob/74a6311b865e2ecc35e6e7851ccbc681e0119f97/src/main/java/org/spongepowered/api/block/ScheduledBlockUpdate.java)? https://github.com/SpongePowered/SpongeAPI/blob/44b5f5ecc6bf3751ef81b1ff6321fbe3f08099fc/src/main/java/org/spongepowered/api/world/extent/Extent.java#L333-L395

There will need to be tracking for what player sees what entity. Minecraft already does this (`net.minecraft.entity.EntityTracker`), it might be possible to use that. This fake entity proposal sounds like...

I think it's worth noting in the documentation that this assumes the vanilla font. In ChatUILib I have [`FontData`](https://github.com/simon816/ChatUI/blob/ba4fc94457d6dc741e6b7bafe0605096f7a6e5af/ChatUILib/src/main/java/com/simon816/chatui/util/FontData.java) which reads a .png to determine character sizes, allowing non-vanilla ascii.png...

Also, to centre text means knowing the width of the chat box. SpongeCommon [assumes the default](https://github.com/SpongePowered/SpongeCommon/blob/7ea7c5d8e69f84fa9b1c1c3eddb90d4fff5d4dd7/src/main/java/org/spongepowered/common/service/pagination/PaginationCalculator.java#L56) (320), but it is customizable (see https://ore.spongepowered.org/simon816/Chat-UI-Library#player-settings)

The `Projectile` interface is really used more for classification. In the vanilla code, there's not really much of a classification for this (other than `EntityThrowable`). When you call `launchProjectile` on...

Relevant commit https://github.com/SpongePowered/SpongeAPI/commit/59941a6f05f6f4689b772d6c6637ef82998d4fc7 -- network message API and several more network API changes

For the most-part Sponge's API is very similar to Forge's API. The forge documentation for networking is here: http://mcforge.readthedocs.org/en/latest/networking/simpleimpl/ If I have time and the docs people need more Sponge-specific...