Merge pull request #113 from someh4x0r/master

Fix BlockTrapDoor.disableValidation on server
This commit is contained in:
LexManos 2012-08-01 02:40:11 -07:00
commit 3a0a329c77
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;