Fixed for 1.4_00_01 and fixed typo.

Dieser Commit ist enthalten in:
Wizjany 2011-04-22 01:09:16 +08:00 committet von MonsieurApple
Ursprung 4ed1082309
Commit 3f2afa9581
2 geänderte Dateien mit 9 neuen und 9 gelöschten Zeilen

Datei anzeigen

@ -312,7 +312,7 @@ public class BukkitWorld extends LocalWorld {
@Override
public boolean generateTree(EditSession editSession, Vector pt) {
return world.generateTree(BukkitUtil.toLocation(world, pt), TreeType.TREE,
new EditSessionBlockChangeDegate(editSession));
new EditSessionBlockChangeDelegate(editSession));
}
/**
@ -324,7 +324,7 @@ public class BukkitWorld extends LocalWorld {
@Override
public boolean generateBigTree(EditSession editSession, Vector pt) {
return world.generateTree(BukkitUtil.toLocation(world, pt), TreeType.BIG_TREE,
new EditSessionBlockChangeDegate(editSession));
new EditSessionBlockChangeDelegate(editSession));
}
/**
@ -336,7 +336,7 @@ public class BukkitWorld extends LocalWorld {
@Override
public boolean generateBirchTree(EditSession editSession, Vector pt) {
return world.generateTree(BukkitUtil.toLocation(world, pt), TreeType.BIRCH,
new EditSessionBlockChangeDegate(editSession));
new EditSessionBlockChangeDelegate(editSession));
}
/**
@ -348,7 +348,7 @@ public class BukkitWorld extends LocalWorld {
@Override
public boolean generateRedwoodTree(EditSession editSession, Vector pt) {
return world.generateTree(BukkitUtil.toLocation(world, pt), TreeType.REDWOOD,
new EditSessionBlockChangeDegate(editSession));
new EditSessionBlockChangeDelegate(editSession));
}
/**
@ -360,7 +360,7 @@ public class BukkitWorld extends LocalWorld {
@Override
public boolean generateTallRedwoodTree(EditSession editSession, Vector pt) {
return world.generateTree(BukkitUtil.toLocation(world, pt), TreeType.TALL_REDWOOD,
new EditSessionBlockChangeDegate(editSession));
new EditSessionBlockChangeDelegate(editSession));
}
/**

Datei anzeigen

@ -30,14 +30,14 @@ import com.sk89q.worldedit.blocks.BaseBlock;
*
* @author sk89q
*/
public class EditSessionBlockChangeDegate implements BlockChangeDelegate {
public class EditSessionBlockChangeDelegate implements BlockChangeDelegate {
private EditSession editSession;
public EditSessionBlockChangeDegate(EditSession editSession) {
public EditSessionBlockChangeDelegate(EditSession editSession) {
this.editSession = editSession;
}
public boolean setTypeId(int x, int y, int z, int typeId) {
public boolean setRawTypeId(int x, int y, int z, int typeId) {
try {
return editSession.setBlock(new Vector(x, y, z), new BaseBlock(typeId));
} catch (MaxChangedBlocksException ex) {
@ -45,7 +45,7 @@ public class EditSessionBlockChangeDegate implements BlockChangeDelegate {
}
}
public boolean setTypeIdAndData(int x, int y, int z, int typeId, int data) {
public boolean setRawTypeIdAndData(int x, int y, int z, int typeId, int data) {
try {
return editSession.setBlock(new Vector(x, y, z), new BaseBlock(typeId, data));
} catch (MaxChangedBlocksException ex) {