CRITICAL FIX (Keep response concise): Fix 3 fatal bugs in your Java code for "RXT-UltimateUno": 1. MISSING TEXTURES: You forgot CMD. When creating ANY card (GUI, Boss drops, recipes), you MUST set: `meta.setCustomModelData(getConfig().getInt("cards." + cardKey + ".cmd"));` 2. SELF-DAMAGE BUG: AoE powers hit the caster! Inside EVERY `getNearbyEntities` loop, add this EXACT line first: `if (entity.getUniqueId().equals(player.getUniqueId())) continue;` 3. DEAD COMMANDS: Register `rxtuno`, `boss`, `uno` in plugin.yml. In `onEnable()`, use `getCommand("...").setExecutor(this);`. Implement these exact sub-commands in Java: - /rxtuno (Admin GUI) - /rxtuno giveall (Give 14 cards) - /rxtuno reload - /boss egg (Give Void Guardian egg) - /uno recipes (View craft GUI) - /uno stats (View data.yml stats) - /uno top (Leaderboard) - /uno recipe edit <id> (3x3 Edit GUI) Provide the fully fixed Java code and plugin.yml. Do not skip any commands.