This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
---- 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) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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 |