Better limit calculation for previous commit.
This commit is contained in:
parent
5567d64e02
commit
1bd3873eb3
@ -527,7 +527,7 @@ public class NpcViewMod implements IBypassHandler
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if ((rightSb.length() + leftSb.length()) < 13000) // limit of 32766
|
if ((sb.length() + rightSb.length() + leftSb.length()) < 16000) // limit of 32766?
|
||||||
{
|
{
|
||||||
if (leftHeight >= (rightHeight + height))
|
if (leftHeight >= (rightHeight + height))
|
||||||
{
|
{
|
||||||
|
@ -527,7 +527,7 @@ public class NpcViewMod implements IBypassHandler
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if ((rightSb.length() + leftSb.length()) < 13000) // limit of 32766
|
if ((sb.length() + rightSb.length() + leftSb.length()) < 16000) // limit of 32766?
|
||||||
{
|
{
|
||||||
if (leftHeight >= (rightHeight + height))
|
if (leftHeight >= (rightHeight + height))
|
||||||
{
|
{
|
||||||
|
@ -527,7 +527,7 @@ public class NpcViewMod implements IBypassHandler
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if ((rightSb.length() + leftSb.length()) < 13000) // limit of 32766
|
if ((sb.length() + rightSb.length() + leftSb.length()) < 16000) // limit of 32766?
|
||||||
{
|
{
|
||||||
if (leftHeight >= (rightHeight + height))
|
if (leftHeight >= (rightHeight + height))
|
||||||
{
|
{
|
||||||
|
@ -527,7 +527,7 @@ public class NpcViewMod implements IBypassHandler
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if ((rightSb.length() + leftSb.length()) < 13000) // limit of 32766
|
if ((sb.length() + rightSb.length() + leftSb.length()) < 16000) // limit of 32766?
|
||||||
{
|
{
|
||||||
if (leftHeight >= (rightHeight + height))
|
if (leftHeight >= (rightHeight + height))
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user