Skip to content

修复 TridentDupe 漏洞,适用于 1.13+ 所有服务端。

Notifications You must be signed in to change notification settings

Null-K/TridentDupeFixer

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 

Repository files navigation

修复 TridentDupe 漏洞,适用于 1.13+ 所有服务端。 漏洞相关链接:https://github.com/Killetx/TridentDupe

Plugin Download: https://www.spigotmc.org/resources/tridentdupefixer.122658/

This plugin is compatible with all server types. If you are using Paper or any of its forks, you can utilize the simpler code provided below (source: https://github.com/MrXiaoM/BanClickWhenUsingItem/tree/main).

    @EventHandler
    public void onInventoryClick(InventoryClickEvent e) {
        HumanEntity entity = e.getWhoClicked();
        ItemStack item = entity.getActiveItem();
        if (item != null && !item.getType().equals(Material.AIR)) {
            // entity.sendMessage("fixed exploit: " + item.getType().name());
            e.setCancelled(true);
        }
    }

About

修复 TridentDupe 漏洞,适用于 1.13+ 所有服务端。

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 3

  •  
  •  
  •  

Languages