Skip to content

Commit

Permalink
feat: Add option to return to spawn when dies (#540)
Browse files Browse the repository at this point in the history
* feat: user return to spawn when dies

* feat: add return to spawn in config docs

* feat: improve respawn feature variable name
  • Loading branch information
Yuhtin authored Dec 30, 2023
1 parent b07a558 commit 5496b9d
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -165,6 +165,9 @@ public class Settings {
@YamlKey("general.description_regex")
private String descriptionRegex = "\\A\\p{ASCII}*\\z";

@YamlComment("Whether the user should back to spawn when they die")
@YamlKey("general.always_respawn_at_spawn")
private boolean alwaysRespawnAtSpawn = false;

// Back command settings
@YamlComment("Whether /back should work to teleport the user to where they died")
Expand Down Expand Up @@ -439,6 +442,10 @@ public String getDescriptionRegex() {
return descriptionRegex;
}

public boolean doAlwaysRespawnAtSpawn() {
return alwaysRespawnAtSpawn;
}

public boolean doBackCommandReturnByDeath() {
return backCommandReturnByDeath;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -298,7 +298,9 @@ protected final void handlePlayerTeleport(@NotNull OnlineUser onlineUser, @NotNu
* @param position the new spawn point
*/
protected final void handlePlayerUpdateSpawnPoint(@NotNull OnlineUser onlineUser, @NotNull Position position) {
if (plugin.getSettings().doCrossServer() && plugin.getSettings().isGlobalRespawning()) {
if (!plugin.getSettings().doAlwaysRespawnAtSpawn()
&& plugin.getSettings().doCrossServer()
&& plugin.getSettings().isGlobalRespawning()) {
plugin.getDatabase().setRespawnPosition(onlineUser, position);
}
}
Expand Down
4 changes: 3 additions & 1 deletion docs/Config-Files.md
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,8 @@ general:
back_command_return_by_death: true
# Whether /back should work with other plugins that use the PlayerTeleportEvent (can cause conflicts)
back_command_save_teleport_event: false
# Whether the user should back to spawn when they die (ensure that cross_server.enabled and cross_server.global_respawning are enabled)
always_respawn_at_spawn: true
# How many items should be displayed per-page in chat menu lists
list_items_per_page: 12
# Whether teleportation should be carried out asynchronously (ensuring chunks load before teleporting)
Expand Down Expand Up @@ -193,4 +195,4 @@ This file is only present if your server uses cross-server mode to run HuskHomes
name: beta
```

</details>
</details>

0 comments on commit 5496b9d

Please sign in to comment.