mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-01 00:10:32 +01:00
42 lines
1.5 KiB
Diff
42 lines
1.5 KiB
Diff
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
From: booky10 <boooky10@gmail.com>
|
|
Date: Sat, 14 Oct 2023 03:11:11 +0200
|
|
Subject: [PATCH] Add player idle duration API
|
|
|
|
Implements API for getting and resetting a player's idle duration.
|
|
|
|
diff --git a/src/main/java/org/bukkit/entity/Player.java b/src/main/java/org/bukkit/entity/Player.java
|
|
index 0d6401cd26424c971b137c968467e29f47c03d8b..0d585390066966f3afd6b88c6d80806292a3cd31 100644
|
|
--- a/src/main/java/org/bukkit/entity/Player.java
|
|
+++ b/src/main/java/org/bukkit/entity/Player.java
|
|
@@ -3645,6 +3645,29 @@ public interface Player extends HumanEntity, Conversable, OfflinePlayer, PluginM
|
|
void increaseWardenWarningLevel();
|
|
// Paper end
|
|
|
|
+ // Paper start
|
|
+ /**
|
|
+ * The idle duration is reset when the player
|
|
+ * sends specific action packets.
|
|
+ * <p>
|
|
+ * After the idle duration exceeds {@link org.bukkit.Bukkit#getIdleTimeout()}, the
|
|
+ * player will be kicked for {@link org.bukkit.event.player.PlayerKickEvent.Cause#IDLING}.
|
|
+ *
|
|
+ * @return the current idle duration of this player
|
|
+ */
|
|
+ @NotNull Duration getIdleDuration();
|
|
+
|
|
+ /**
|
|
+ * Resets this player's idle duration.
|
|
+ * <p>
|
|
+ * After the idle duration exceeds {@link org.bukkit.Bukkit#getIdleTimeout()}, the
|
|
+ * player will be kicked for {@link org.bukkit.event.player.PlayerKickEvent.Cause#IDLING}.
|
|
+ *
|
|
+ * @see #getIdleDuration()
|
|
+ */
|
|
+ void resetIdleDuration();
|
|
+ // Paper end
|
|
+
|
|
@NotNull
|
|
@Override
|
|
Spigot spigot();
|