mirror of
https://gitlab.com/2009scape/rt4-client.git
synced 2026-08-01 14:39:16 -06:00
Keep the canvas in the frame but change the Z order
This commit is contained in:
parent
8180e20281
commit
1f1718d917
3 changed files with 20 additions and 53 deletions
|
|
@ -70,7 +70,7 @@ public class PluginRepository {
|
|||
File pluginsDirectory = new File(GlobalJsonConfig.instance.pluginsFolder);
|
||||
|
||||
if (!pluginsDirectory.exists()) {
|
||||
System.out.println("Skipping plugin initialization - " + pluginsDirectory.getAbsolutePath() + " does not exist.");
|
||||
//System.out.println("Skipping plugin initialization - " + pluginsDirectory.getAbsolutePath() + " does not exist.");
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
@ -120,7 +120,7 @@ public class PluginRepository {
|
|||
}
|
||||
|
||||
if (loadedPlugins.containsKey(info)) {
|
||||
System.out.println("Skipping reloading of plugin " + file.getName() + " as it already exists and has OnPluginsReloaded.");
|
||||
//System.out.println("Skipping reloading of plugin " + file.getName() + " as it already exists and has OnPluginsReloaded.");
|
||||
continue;
|
||||
}
|
||||
|
||||
|
|
@ -143,7 +143,7 @@ public class PluginRepository {
|
|||
loader.loadClass(file.getName() + "." + f.getName().replace(".class",""));
|
||||
}
|
||||
|
||||
System.out.println("Successfully loaded plugin " + file.getName() + ", version " + info.version);
|
||||
//System.out.println("Successfully loaded plugin " + file.getName() + ", version " + info.version);
|
||||
}
|
||||
} catch (Exception e) {
|
||||
System.err.println("Unexpected exception during plugin initialization:");
|
||||
|
|
|
|||
|
|
@ -205,8 +205,8 @@ public final class GlRenderer {
|
|||
@OriginalMember(owner = "client!tf", name = "d", descriptor = "()V")
|
||||
public static void swapBuffers() {
|
||||
try {
|
||||
readPixels();
|
||||
drawable.swapBuffers();
|
||||
readPixels();
|
||||
} catch (@Pc(3) Exception local3) {
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue