Skip to content

Instantly share code, notes, and snippets.

View Wolvereness's full-sized avatar

Wesley Wolfe Wolvereness

View GitHub Profile
@SpaceManiac
SpaceManiac / compatchecker.py
Created February 20, 2012 23:04
A Python/Solum script to check Bukkit plugins against a given Bukkit or CraftBukkit jar.
#!/usr/bin/python
# compatchecker.py
#
# Scans .jar files passed on command line for compatability with a given
# Bukkit or CraftBukkit jar.
#
# Requires Solum (https://github.com/TkTech/Solum)
# sudo pip install git+git://github.com/TkTech/Solum.git
import sys, urllib2, re
anonymous
anonymous / gist:8276095
Created January 6, 2014 00:19
---- Minecraft Crash Report ----
// Quite honestly, I wouldn't worry myself about that.
Time: 1/5/14 5:46 PM
Description: Exception in server tick loop
java.lang.IllegalArgumentException: n must be positive
at java.util.Random.nextInt(Random.java:300)
at net.minecraft.server.v1_7_R1.BiomeDecorator.a(SourceFile:122)
at net.minecraft.server.v1_7_R1.BiomeDecorator.a(SourceFile:27)
@SpaceManiac
SpaceManiac / chunk-send-event.txt
Last active November 13, 2017 17:35
Chunk Send Event / Send Chunk Update API rough sketch & notes
Chunk Send Event / Send Chunk Update API rough sketch & notes
<Wolvereness> SpaceManiac: 1/3 of the problem is addresssing where to hook this, 1/3 of the problem
is addressing how to have a mutable block of memory with sensible API, 1/3 of the problem is
address performance concerns like bulk and compression
JIRA Ticket: BUKKIT-5642 Chunk Send Event and Methods
Vaguely related tickets:
BUKKIT-4114: Fast mass block update API