update private server stuff to not break all the fucking time

This commit is contained in:
Lucwousin
2019-10-31 19:06:00 +01:00
parent d795ebdfc2
commit 23dd23a415
4 changed files with 31 additions and 39 deletions

View File

@@ -1751,21 +1751,13 @@ public abstract class RSClientMixin implements RSClient
}
@Inject
BigInteger modulus = new BigInteger("a8cda33f9c45f0b9d1675c38ec69da6be4143320190060c229bb35ed91677a4447e09e77031e824aed13bfab51ba180bbda7e279a128f3eb016e9b0dd752a948431798626fc36ac10e036d945f2752d0d874c65a86d3e001a17bf9d63d8bc263b07be4ebc613d01781023a07de698e75248b582e682f1751395f61b9ec1bcbb3", 16);
@Inject
@Override
public BigInteger getModulus()
{
return modulus;
}
private static BigInteger modulus;
@Inject
@Override
public void setModulus(BigInteger modulus)
{
this.modulus = modulus;
RSClientMixin.modulus = modulus;
}
@Copy("forceDisconnect")