Fix BlockTrapDoor.disableValidation on server

This commit is contained in:
Robert Ou 2012-08-01 16:36:27 +08:00
parent 9083be320b
commit 008972e448
1 changed files with 11 additions and 0 deletions

View File

@ -40,3 +40,14 @@
}
}
@@ -280,6 +288,10 @@
*/
private static boolean isValidSupportBlock(int par0)
{
+ if (disableValidation)
+ {
+ return true;
+ }
if (par0 <= 0)
{
return false;