mirror of
https://gitlab.com/2009scape/rt4-client.git
synced 2026-08-28 05:45:15 -06:00
Fixed HD flyover when logging out with resizable SD enabled
This commit is contained in:
parent
824f85c7b3
commit
7aab2d1735
2 changed files with 11 additions and 5 deletions
|
|
@ -162,7 +162,8 @@ public class PluginRepository {
|
|||
}
|
||||
|
||||
public static void OnLogout() {
|
||||
loadedPlugins.values().forEach(Plugin::OnLogout);
|
||||
List<Plugin> pluginsSnapshot = new ArrayList<>(loadedPlugins.values());
|
||||
pluginsSnapshot.forEach(Plugin::OnLogout);
|
||||
}
|
||||
|
||||
public static void DrawMiniMenu(MiniMenuEntry entry) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue