Skip to content

Commit ac3970f

Browse files
committed
📝 Add changelogs
1 parent da6705e commit ac3970f

2 files changed

Lines changed: 14 additions & 7 deletions

File tree

changelog.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,19 @@
44
- Ajouter une option pour désactiver la tabulation des joueurs hors ligne
55
- Ajouter un placeholder pour transformet les caractères en lettre spécial
66

7+
# 1.0.3.2
8+
9+
- Updated zMenu to version 1.1.0.8
10+
- Added `/lightning` command to strike players with lightning
11+
- Added `*` argument for `/heal` and `/feed` commands to target all players
12+
- Added player name tab completion for `/heal` and `/feed` commands
13+
- Added relative directions (north, south, etc.) to `/near` command
14+
- Added smooth time transition for `/day` and `/night` commands
15+
- `/feed` command now restores saturation
16+
- `/ext` command can now target other players
17+
- Fixed temporary fly when changing world through portals
18+
- Fixed personal time from progressing
19+
720
# 1.0.3.1
821

922
- Added NMS support for Minecraft 1.21.9, 1.21.10 and 1.21.11

src/main/java/fr/maxlego08/essentials/commands/commands/weather/TimeTransition.java

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,9 @@
11
package fr.maxlego08.essentials.commands.commands.weather;
22

33
import fr.maxlego08.essentials.api.EssentialsPlugin;
4-
import fr.maxlego08.essentials.api.nms.PlayerUtil;
5-
import fr.maxlego08.menu.zcore.utils.nms.NmsVersion;
6-
import org.bukkit.Bukkit;
74
import org.bukkit.World;
8-
import org.bukkit.entity.Player;
95
import org.bukkit.scheduler.BukkitRunnable;
106

11-
import java.lang.reflect.Constructor;
127
import java.util.Set;
138
import java.util.UUID;
149
import java.util.concurrent.ConcurrentHashMap;
@@ -18,9 +13,8 @@
1813
*/
1914
class TimeTransition {
2015

21-
private static final long WORLD_TIME_STEP = 150;
22-
2316
static final Set<UUID> TIME_CHANGING_WORLDS = ConcurrentHashMap.newKeySet();
17+
private static final long WORLD_TIME_STEP = 150;
2418

2519
/**
2620
* Smoothly transitions world time to target time

0 commit comments

Comments
 (0)