Faithcaio
Faithcaio
Basicly if setCancelled is called checking if the event is cancelled is a valid thing to do. Example: ``` @Listener public void onChangeBlock(ChangeBlockEvent event) { if (something) { event.setCancelled(true); }...
[SpongeAPI](https://github.com/SpongePowered/SpongeAPI/pull/2433) | **Sponge** TODOs - [ ] new entities - [x] API Mixins - [ ] vanilla data values? - [ ] `Component.literal("")` vs `Component.empty()` - [ ] `callRegisterDataPackValueEvents` for...
In API8/9 the PhaseTracker is currently not capturing a few inventory changes causing the following warning and stacktrace ``` [Server thread/WARN] [sponge]: Logged slot transactions without event! 1 net.minecraft.world.inventory.InventoryMenu java.lang.Exception:...
@gabizou issues I have to implement this: - There is no impl. for `UnrealizedBiomeVolume` - how is this supposed to work? - Where to get the correct registry holder #3620
### Tasks ### - [ ] Check/Implement/Optimize `DataProvider`s for all `Keys` - [ ] Javadocs on Keys match implementation? - [ ] how to identify readonly values in API? Readonly...
**SpongeAPI** | [Sponge](https://github.com/SpongePowered/Sponge/pull/3700) ### API Issues/Breaks: #### WorldGen - [x] WorldGen see https://github.com/SpongePowered/SpongeAPI/pull/2428 #### RandomSource - [x] `RandomProvider.Source` - extends `RandomGenerator` - [x] `setSeed` - [x] `fork` - [x] `consume(int)`...
The following events were dropped to prevent them from being unimplementable with given interface: - `RingBellEvent` https://github.com/SpongePowered/SpongeAPI/commit/e98d76ccc7b703713576b673089a0099e9e2cbc9 - Sound and GlowEffect are actually separate - `HarvestEntityEvent.Player` https://github.com/SpongePowered/SpongeAPI/commit/ab85249e50d89c4360d2a7b17307ab6c15db9a80 - keepInventory is...
https://github.com/SpongePowered/SpongeAPI/pull/1582 covered building basic recipes with the builder and registering custom implemented Recipes. The following points are some things that were not covered by the PR. - [ ] Diable...
oh no