deathcap
deathcap
On the other hand, I think including the texture image _names_ could be a good idea — as the mapping between item name and texture is not straightforward, and it...
An attempt at making the 0xfe payload ubyte optional in https://gist.github.com/deathcap/7c9b94452b0d6f3d9429 using a switch with default void, but fails "Read error for params.legacy_server_list_ping.payload : Cannot read property 'split' of undefined"
Just a point on this: > IMO the PluginManager / EventManager isn't the big problem. The problem is, that all our files implements Bukkit interfaces and letting them implement the...
Of interest, just posted this: https://forums.spongepowered.org/t/bukkit2sponge-an-implementation-of-spongeapi-for-bukkit-servers/6747/3 - a Bukkit plugin to load SpongeAPI plugins, based on an updated version of @SpaceManiac's https://github.com/GlowstoneMC/ShinySponge. Very barebones at the moment, but it does...
Any suggestions on exactly how to more comprehensively fix this? I'm thinking of moving these code blocks: ``` javascript if (currentlyRaining) { setWeatherDuration(random.nextInt(12000) + 12000); } else { setWeatherDuration(random.nextInt(168000) +...
Added two new private methods `scheduleStorm()` and `scheduleThundering()`. These set the number of ticks until the next weather transition. Originally part of `setStorm()` and `setThundering()`, but those methods are public...
@m3rcuriel I've [merged your PR](https://github.com/GlowstonePlusPlus/GlowstonePlusPlus/commit/0538fe37681a1fc680b539f286f4975ed84b28d8) into [Glowstone++](https://github.com/GlowstonePlusPlus/GlowstonePlusPlus), can you elaborate on the weird bug? Glowstone++ might have it
@austincap Cool idea, this should be possible, some plugins for reference: https://github.com/voxel/voxel-blockdata - for storing arbitrary data in blocks (the text) https://github.com/voxel/voxel-voila - example of displaying information when a block...
Sort of, but I'd want to test in each web browser. More like https://ci.testling.com/ but it says "Testling is currently not working" at the moment
Thanks! https://docs.travis-ci.com/user/gui-and-headless-browsers/ looks to be just what I need. - xvfb + "If you need a browser, Firefox is installed on all Travis CI environments." - only one browser, but...