Prevented colored cloth blocks in SMServerInterface.

This commit is contained in:
sk89q 2010-10-15 00:26:29 -07:00
parent f1874efef9
commit e83ec38d31

View File

@ -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);
}