mirror of
https://github.com/plexusorg/Plex-FAWE.git
synced 2024-11-20 02:45:00 +00:00
Merge pull request #134 from TLUL/master
Fixed SPC 2.10_2 compatibility
This commit is contained in:
commit
d7c21322aa
@ -94,7 +94,11 @@ public abstract class LocalWorld {
|
||||
* @param data
|
||||
* @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
|
||||
@ -103,7 +107,11 @@ public abstract class LocalWorld {
|
||||
* @param data
|
||||
* @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.
|
||||
|
Loading…
Reference in New Issue
Block a user