geforkt von Mirrors/FastAsyncWorldEdit
setTypeIdAndData in LocalWorld is no longer abstract - it now defaults to calling setBlockType and setBlockData. Restores compatibility with SinglePlayerCommands 2.10_2.
Dieser Commit ist enthalten in:
Ursprung
9d753c8692
Commit
22cbc90b6d
@ -94,7 +94,11 @@ public abstract class LocalWorld {
|
|||||||
* @param data
|
* @param data
|
||||||
* @return
|
* @return
|
||||||
*/
|
*/
|
||||||
public abstract boolean setTypeIdAndData(Vector pt, int type, int data);
|
public boolean setTypeIdAndData(Vector pt, int type, int data) {
|
||||||
|
boolean ret = setBlockType(pt, type);
|
||||||
|
setBlockData(pt, data);
|
||||||
|
return ret;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* set block type & data
|
* set block type & data
|
||||||
@ -103,7 +107,11 @@ public abstract class LocalWorld {
|
|||||||
* @param data
|
* @param data
|
||||||
* @return
|
* @return
|
||||||
*/
|
*/
|
||||||
public abstract boolean setTypeIdAndDataFast(Vector pt, int type, int data);
|
public boolean setTypeIdAndDataFast(Vector pt, int type, int data) {
|
||||||
|
boolean ret = setBlockTypeFast(pt, type);
|
||||||
|
setBlockDataFast(pt, data);
|
||||||
|
return ret;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Get block data.
|
* Get block data.
|
||||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren