mirror of
https://github.com/AtlasMediaGroup/TotalFreedomMod.git
synced 2024-11-27 01:05:38 +00:00
Actually, let's make it possible to disable it if needed
This commit is contained in:
parent
a9c9979b1c
commit
871acc2eeb
@ -192,7 +192,7 @@ public class LoginProcess extends FreedomService
|
|||||||
final PlayerData playerData = plugin.pl.getData(player);
|
final PlayerData playerData = plugin.pl.getData(player);
|
||||||
|
|
||||||
// Sends a message to the player if they have never joined before (or simply lack player data).
|
// Sends a message to the player if they have never joined before (or simply lack player data).
|
||||||
if (!event.getPlayer().hasPlayedBefore())
|
if (!event.getPlayer().hasPlayedBefore() && ConfigEntry.FIRST_JOIN_INFO_ENABLED.getBoolean())
|
||||||
{
|
{
|
||||||
final BukkitTask runnable = new BukkitRunnable()
|
final BukkitTask runnable = new BukkitRunnable()
|
||||||
{
|
{
|
||||||
|
@ -165,7 +165,8 @@ public enum ConfigEntry
|
|||||||
ADMIN_INFO(List.class, "admininfo"),
|
ADMIN_INFO(List.class, "admininfo"),
|
||||||
VOTING_INFO(List.class, "votinginfo"),
|
VOTING_INFO(List.class, "votinginfo"),
|
||||||
MASTER_BUILDER_INFO(List.class, "masterbuilderinfo"),
|
MASTER_BUILDER_INFO(List.class, "masterbuilderinfo"),
|
||||||
FIRST_JOIN_INFO(List.class, "first_join_info"),
|
FIRST_JOIN_INFO(List.class, "first_join_info.text"),
|
||||||
|
FIRST_JOIN_INFO_ENABLED(Boolean.class, "first_join_info.enabled"),
|
||||||
AUTO_ENTITY_WIPE(Boolean.class, "auto_wipe"),
|
AUTO_ENTITY_WIPE(Boolean.class, "auto_wipe"),
|
||||||
TOGGLE_CHAT(Boolean.class, "toggle_chat"),
|
TOGGLE_CHAT(Boolean.class, "toggle_chat"),
|
||||||
DEVELOPER_MODE(Boolean.class, "developer_mode"),
|
DEVELOPER_MODE(Boolean.class, "developer_mode"),
|
||||||
|
@ -592,9 +592,11 @@ masterbuilderinfo:
|
|||||||
|
|
||||||
# What new players will see upon joining for the first time.
|
# What new players will see upon joining for the first time.
|
||||||
first_join_info:
|
first_join_info:
|
||||||
- "&6Welcome to TotalFreedom -- the original Free-OP server!"
|
enabled: true
|
||||||
- "&eThe server's name doesn't mean we have no rules. Do &6/rules &efor a list of them."
|
text:
|
||||||
- "&aNeed help getting started? Do &2/help &aor a list of commands!"
|
- "&6Welcome to TotalFreedom -- the original Free-OP server!"
|
||||||
|
- "&eThe server's name doesn't mean we have no rules. Do &6/rules &efor a list of them."
|
||||||
|
- "&aNeed help getting started? Do &2/help &aor a list of commands!"
|
||||||
|
|
||||||
# Famous players - cannot be banned by username
|
# Famous players - cannot be banned by username
|
||||||
famous_players:
|
famous_players:
|
||||||
|
Loading…
Reference in New Issue
Block a user