mirror of
https://github.com/2006-Scape/Parabot-Randoms.git
synced 2026-07-02 16:49:09 +00:00
Revert debug SoulPlay code change + replace Logger.info with verbose() call to prune the message if wanted
This commit is contained in:
@@ -61,6 +61,6 @@ public class Core {
|
||||
if (toPrint.contains("->")) {
|
||||
org.parabot.core.Core.verbose(toPrint);
|
||||
}
|
||||
Logger.info("org.parabot.randoms.Core", "A total of "+randomCount+" randoms have been loaded for server: "+server);
|
||||
org.parabot.core.Core.verbose("[org.parabot.randoms.Core] A total of "+randomCount+" randoms have been loaded for server: "+server);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,6 +1,5 @@
|
||||
package org.parabot.randoms.soulplay;
|
||||
|
||||
import org.parabot.api.output.Logger;
|
||||
import org.parabot.core.reflect.RefClass;
|
||||
import org.parabot.environment.randoms.Random;
|
||||
import org.parabot.environment.randoms.RandomType;
|
||||
@@ -16,8 +15,6 @@ public class RandomUUID implements Random {
|
||||
private long number;
|
||||
|
||||
public RandomUUID() {
|
||||
Logger.info("RandomUUID", Loader.getClient()+" is client class");
|
||||
assert Loader.getClient() != null;
|
||||
this.clientClass = new RefClass(Loader.getClient());
|
||||
this.number = (long) Math.floor(Math.random() * 9000000000L) + 1000000000L;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user