removed files from previous version

This commit is contained in:
Space Toad 2012-01-15 23:39:28 +00:00
parent 5190e0c927
commit 779d34372b
6 changed files with 0 additions and 96 deletions

View file

@ -1,10 +0,0 @@
// this is needed for the sound engine to work with deobfuscated sourcecode without crashing
public class me
{
public static int c(double d)
{
int i = (int)d;
return d >= (double)i ? i : i - 1;
}
}

View file

@ -1,14 +0,0 @@
--- ../src_base/minecraft/net/minecraft/src/Packet100OpenWindow.java 0000-00-00 00:00:00.000000000 -0000
+++ ../src_work/minecraft/net/minecraft/src/Packet100OpenWindow.java 0000-00-00 00:00:00.000000000 -0000
@@ -30,9 +30,9 @@
throws IOException
{
windowId = datainputstream.readByte();
- inventoryType = datainputstream.readByte();
+ inventoryType = datainputstream.readByte()&0xFF;
windowTitle = readString(datainputstream, 16);
- slotsCount = datainputstream.readByte();
+ slotsCount = datainputstream.readByte()&0xFF;
}
public void writePacketData(DataOutputStream dataoutputstream)

View file

@ -1,20 +0,0 @@
--- ../src_base/minecraft/net/minecraft/src/Packet24MobSpawn.java 0000-00-00 00:00:00.000000000 -0000
+++ ../src_work/minecraft/net/minecraft/src/Packet24MobSpawn.java 0000-00-00 00:00:00.000000000 -0000
@@ -15,7 +15,7 @@
{
public int entityId;
- public byte type;
+ public int type;
public int xPosition;
public int yPosition;
public int zPosition;
@@ -44,7 +44,7 @@
throws IOException
{
entityId = datainputstream.readInt();
- type = datainputstream.readByte();
+ type = datainputstream.readByte() & 0xFF;
xPosition = datainputstream.readInt();
yPosition = datainputstream.readInt();
zPosition = datainputstream.readInt();

View file

@ -1,14 +0,0 @@
--- ../src_base/minecraft_server/net/minecraft/src/Packet100OpenWindow.java 0000-00-00 00:00:00.000000000 -0000
+++ ../src_work/minecraft_server/net/minecraft/src/Packet100OpenWindow.java 0000-00-00 00:00:00.000000000 -0000
@@ -38,9 +38,9 @@
throws IOException
{
windowId = datainputstream.readByte();
- inventoryType = datainputstream.readByte();
+ inventoryType = datainputstream.readByte()&0xFF;
windowTitle = readString(datainputstream, 16);
- slotsCount = datainputstream.readByte();
+ slotsCount = datainputstream.readByte()&0xFF;
}
public void writePacketData(DataOutputStream dataoutputstream)

View file

@ -1,20 +0,0 @@
--- ../src_base/minecraft_server/net/minecraft/src/Packet24MobSpawn.java 0000-00-00 00:00:00.000000000 -0000
+++ ../src_work/minecraft_server/net/minecraft/src/Packet24MobSpawn.java 0000-00-00 00:00:00.000000000 -0000
@@ -15,7 +15,7 @@
{
public int entityId;
- public byte type;
+ public int type;
public int xPosition;
public int yPosition;
public int zPosition;
@@ -44,7 +44,7 @@
throws IOException
{
entityId = datainputstream.readInt();
- type = datainputstream.readByte();
+ type = datainputstream.readByte() & 0xFF;
xPosition = datainputstream.readInt();
yPosition = datainputstream.readInt();
zPosition = datainputstream.readInt();

View file

@ -1,18 +0,0 @@
--- ../src_base/minecraft_server/net/minecraft/src/PlayerInstance.java 0000-00-00 00:00:00.000000000 -0000
+++ ../src_work/minecraft_server/net/minecraft/src/PlayerInstance.java 0000-00-00 00:00:00.000000000 -0000
@@ -183,12 +183,11 @@
sendPacketToPlayersInInstance(new Packet52MultiBlockChange(chunkX, chunkZ, blocksToUpdate, numBlocksToUpdate, worldserver));
for(int k = 0; k < numBlocksToUpdate; k++)
{
- int j1 = chunkX * 16 + (numBlocksToUpdate >> 12 & 0xf);
- int i2 = numBlocksToUpdate & 0xff;
- int k2 = chunkZ * 16 + (numBlocksToUpdate >> 8 & 0xf);
+ int j1 = chunkX * 16 + (blocksToUpdate[k] >> 12 & 0xf);
+ int i2 = blocksToUpdate[k] & 0xff;
+ int k2 = chunkZ * 16 + (blocksToUpdate[k] >> 8 & 0xf);
if(Block.isBlockContainer[worldserver.getBlockId(j1, i2, k2)])
{
- System.out.println("Sending!");
updateTileEntity(worldserver.getBlockTileEntity(j1, i2, k2));
}
}