3
0
Mirror von https://github.com/IntellectualSites/FastAsyncWorldEdit.git synchronisiert 2024-07-24 19:18:02 +02:00

Prevented colored cloth blocks in SMServerInterface.

Dieser Commit ist enthalten in:
sk89q 2010-10-15 00:26:29 -07:00
Ursprung f1874efef9
Commit e83ec38d31

Datei anzeigen

@ -32,6 +32,10 @@ public class SMServerInterface implements ServerInterface {
* @return
*/
public boolean setBlockType(Vector pt, int type) {
// Can't set colored cloth or crash
if ((type >= 21 && type <= 34) || type == 36) {
return false;
}
return etc.getMCServer().e.d(pt.getBlockX(), pt.getBlockY(),
pt.getBlockZ(), type);
}