Michael Karneim
Michael Karneim
Currently PB supports the fluent interface by using a 'self' pointer, which is necessary in the context of the generation gap feature. This works but has some drawbacks. For example,...
`org.fest.assertions.internal.Iterables.assertContainsExactly(AssertionInfo info, Iterable actual, Object[] values)` calls checkIsNotNullAndNotEmpty(values) and throws an IllegalArgumentException with message "The array of values to look for should not be empty" EVEN if values AND actual...
I removed the auto-downloading feature of the MC server jar since the naming has changed form MC 1.12 to 1.13. Instead you now must run vanillacord on an existing local...
After sending the command `/gamerule sendCommandFeedback false` we can't see the Lua interpreters output of the print function e.g. in `/lua print("hello")`
* ```World.time``` should return the time that can be set using ```/time```. * ```World.daytime``` should return the time modulo 24000, so that it reflects the sun position. See also #218
I created an event interceptor for my custom event and tried to cancel it. But this is not allowed since the event is not cancelable. ```lua Events.on("claiming-heads.ClaimEvent"):call(function(event) local pos =...
Currently all spells have the same global tick allowance defined by the ```luaTicksLimit``` in the config file. It would be nice if a spell could override this value for itself,...
We want to support user-created spell packs. See #197 for details. I suggest that we add the ```wol pack import``` command with the following functionality: ## wol pack import This...