mirror of
https://gitlab.com/phoenix-dvpmt/mmocore.git
synced 2024-11-21 23:55:28 +01:00
Fixed DROP forcing a left click with key combo casting
This commit is contained in:
parent
36b5be13be
commit
f6d094fb6e
@ -127,6 +127,7 @@ public class PlayerData extends SynchronizedDataHolder implements OfflinePlayerD
|
||||
|
||||
// NON-FINAL player data stuff made public to facilitate field change
|
||||
public boolean noCooldown;
|
||||
public long lastDropEvent;
|
||||
|
||||
public PlayerData(MMOPlayerData mmoData) {
|
||||
super(mmoData);
|
||||
|
@ -31,19 +31,37 @@ public class PlayerPressKeyListener implements Listener {
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Recent bukkit builds automatically send an interact packet
|
||||
* when dropping an item, by pressing Q or from any inventory.
|
||||
* <p>
|
||||
* Simple implementation of a Xms timeout after drop events
|
||||
* where all interact events are nulled. This timeout should
|
||||
* be lower slightly lower than one tick, if the TPS gets
|
||||
* really close to 20 it could cause a loss of true clicks.
|
||||
* Finally, it should only cancel ONE click event at most
|
||||
* and get reset by the first cancelled click event.
|
||||
*/
|
||||
private static final long CLICK_EVENT_TIMEOUT = 30;
|
||||
|
||||
@EventHandler(priority = EventPriority.LOWEST)
|
||||
public void registerClickKey(PlayerInteractEvent event) {
|
||||
if (event.useItemInHand() != Event.Result.DENY && event.getAction().name().contains("CLICK") && event.getHand().equals(EquipmentSlot.HAND)) {
|
||||
boolean rightClick = event.getAction() == Action.RIGHT_CLICK_AIR || event.getAction() == Action.RIGHT_CLICK_BLOCK;
|
||||
PlayerKeyPressEvent called = new PlayerKeyPressEvent(PlayerData.get(event.getPlayer()), rightClick ? PlayerKey.RIGHT_CLICK : PlayerKey.LEFT_CLICK, event);
|
||||
Bukkit.getPluginManager().callEvent(called);
|
||||
final PlayerData playerData = PlayerData.get(event.getPlayer());
|
||||
if (System.currentTimeMillis() - playerData.lastDropEvent < CLICK_EVENT_TIMEOUT) {
|
||||
playerData.lastDropEvent = 0;
|
||||
return;
|
||||
}
|
||||
final boolean rightClick = event.getAction() == Action.RIGHT_CLICK_AIR || event.getAction() == Action.RIGHT_CLICK_BLOCK;
|
||||
Bukkit.getPluginManager().callEvent(new PlayerKeyPressEvent(playerData, rightClick ? PlayerKey.RIGHT_CLICK : PlayerKey.LEFT_CLICK, event));
|
||||
}
|
||||
}
|
||||
|
||||
@EventHandler(priority = EventPriority.LOWEST)
|
||||
public void registerDropKey(PlayerDropItemEvent event) {
|
||||
PlayerKeyPressEvent called = new PlayerKeyPressEvent(PlayerData.get(event.getPlayer()), PlayerKey.DROP, event);
|
||||
Bukkit.getPluginManager().callEvent(called);
|
||||
final PlayerData playerData = PlayerData.get(event.getPlayer());
|
||||
Bukkit.getPluginManager().callEvent(new PlayerKeyPressEvent(playerData, PlayerKey.DROP, event));
|
||||
playerData.lastDropEvent = System.currentTimeMillis();
|
||||
}
|
||||
|
||||
@EventHandler(priority = EventPriority.LOWEST)
|
||||
|
Loading…
Reference in New Issue
Block a user