When running Future Shops alongside TaCZ (Timeless and Classics Zero), players typically cannot see the stats of guns (like Fire Rate, Damage, or Ammo) inside the shop GUI. This is because TaCZ uses a custom graphical overlay for its stats, while Future Shops forcefully renders tooltips as plain text, bypassing Forge's tooltip rendering events.
This compatibility mod solves that problem by doing two things:
- Injecting explicit text-based weapon stats globally into the tooltip of all TaCZ guns.
- Patching Future Shops via Mixin to properly pass the ItemStack during tooltip rendering, ensuring that all UI overlays, background colors, and injected texts render correctly.
Perfect for PvP, SMP, or Shooting map servers where players need to compare weapon specifications before spending their in-game currency!
Features
- Text-Based Gun Stats: Automatically extracts hidden GunData via the TimelessAPI and appends them as beautiful, color-coded text lines to the weapon's tooltip.
- Damage: Extracted directly from the bullet data.
- Fire Rate (RPM): Accurately reflects the gun's rounds per minute.
- Ammo: Shows the maximum magazine capacity.
- Universal Visibility: These text stats are visible everywhere in the player's inventory, inside chests, and most importantly, inside the Future Shops GUI.
- Future Shops UI Fix: Overrides ShopUiUtil.renderItemTooltip using Mixin to restore standard Minecraft tooltip rendering logic, preventing Future Shops from suppressing custom mod tooltips.

