Added
Display mode configuration via config.yml
# Step visibility: controls who can see the player's steps.
# EVERYONE — all players can see the steps.
# OWNER_ONLY — only the player who created the steps can see them.
# EVERYONE_EXCEPT_OWNER — all players can see the steps except the creator.
stepVisibility: EVERYONE_EXCEPT_OWNER
Changed
Configuration key renamed
center-point → centerPoint (to follow consistent camelCase naming conventions).
Updated resource pack API
// Replaced
public void setResourcePack(String url);
// With
public void addResourcePack(UUID id, String url, @Nullable byte[] hash, @Nullable String prompt, boolean force);
This provides more flexibility (custom resource pack IDs, hashes, prompts, and force flags) and aligns with modern Paper API standards.
- Redesigned step removal
- Steps will not remain in the world during restarts
[ 1.21 - 1.21.4]
Added:
- 1. Equating a step's gaze to the player's gaze
- 2. Fixed spawn step in the air when falling down
[ 1.21 - 1.21.4 ]