Root Cause Resolved: MMOItems and MythicLib items were never detected by LootGlow due to a classloader isolation issue — each Spigot plugin runs in its own sandboxed ClassLoader, making standard Class.forName() calls unable to see other plugins' classes. LootGlow now correctly resolves the MythicLib/MMOItems ClassLoader at runtime via Bukkit.getPluginManager().getPlugin() and uses it explicitly.
Version-Independent Wrapper: Detection now uses MythicLib's version-specific NBT wrapper (MythicLib.plugin.getVersion().getWrapper().getNBTItem()), fully compatible with MythicLib 1.7+ and all its snapshots.
Multi-Namespace PDC Fallback: Before triggering reflection, LootGlow now checks all known PDC namespaces where MMOItems stores its data (mmoitems:, mythiclib:, public:) with multiple key variants for maximum compatibility.
Graceful Degradation: If no resolver is found (no MythicLib/MMOItems installed), the system silently skips detection with zero errors. Debug mode now logs every step of the detection pipeline so server admins can instantly diagnose any item mismatch.