Skip to content

Commit 6aeca39

Browse files
committed
Removed unnecessary quotes from config
1 parent 4628f8f commit 6aeca39

1 file changed

Lines changed: 27 additions & 27 deletions

File tree

src/main/resources/config.yml

Lines changed: 27 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -3,36 +3,36 @@
33
# <sender> - the username of the message sender
44
# <recipient> - the username of the message recipient
55
# <message> - the message text
6-
incoming: '<click:suggest_command:/msg <sender> ><dark_gray>[<#60a5fa><sender></#60a5fa> <white>-></white> <#bfdbfe>me</#bfdbfe>]</dark_gray></click> <reset><#dbeafe><message></#dbeafe>'
6+
incoming: <click:suggest_command:/msg <sender> ><dark_gray>[<#60a5fa><sender></#60a5fa> <white>-></white> <#bfdbfe>me</#bfdbfe>]</dark_gray></click> <reset><#dbeafe><message></#dbeafe>
77

88
# Outgoing message format (sender's point of view)
99
# Same placeholders as incoming
10-
outgoing: '<click:suggest_command:/msg <recipient> ><dark_gray>[<#93c5fd>me</#93c5fd> <white>-></white> <#60a5fa><recipient></#60a5fa>]</dark_gray></click> <reset><#dbeafe><message></#dbeafe>'
10+
outgoing: <click:suggest_command:/msg <recipient> ><dark_gray>[<#93c5fd>me</#93c5fd> <white>-></white> <#60a5fa><recipient></#60a5fa>]</dark_gray></click> <reset><#dbeafe><message></#dbeafe>
1111

1212
# Team message
1313
# Uses the vanilla teams from `/team`
1414
# Placeholders:
1515
# <sender> - the username of the message sender
1616
# <team> - team display name
1717
# <message> - the message text
18-
team: '<click:suggest_command:/tm ><dark_gray>[<white><team></white>] <gray><sender></gray>:</dark_gray> <white><message></white></click>'
18+
team: <click:suggest_command:/tm ><dark_gray>[<white><team></white>] <gray><sender></gray>:</dark_gray> <white><message></white></click>
1919

2020
# Private message format as seen by people with the spy permission and console
2121
# Same placeholders as incoming
22-
spy: '<dark_gray>[SPY] [<click:suggest_command:/msg <sender> ><gray><sender></gray></click> -> <click:suggest_command:/msg <recipient> ><gray><recipient></gray></click>] <gray><message></gray></dark_gray>'
22+
spy: <dark_gray>[SPY] [<click:suggest_command:/msg <sender> ><gray><sender></gray></click> -> <click:suggest_command:/msg <recipient> ><gray><recipient></gray></click>] <gray><message></gray></dark_gray>
2323

2424
# Team message format as seen by people with the spy permission and console
2525
# Same placeholders as team
26-
team-spy: '<dark_gray>[SPY]</dark_gray> <dark_gray>[<white><team></white>] <gray><click:suggest_command:/msg <sender> ><sender></click></gray>:</dark_gray> <gray><message></gray>'
26+
team-spy: <dark_gray>[SPY]</dark_gray> <dark_gray>[<white><team></white>] <gray><click:suggest_command:/msg <sender> ><sender></click></gray>:</dark_gray> <gray><message></gray>
2727

2828
# Player has successfully been ignored
2929
# Placeholders:
3030
# <player> - the player's username
31-
ignored: "<green>(!) You will no longer see messages from <gray><player></gray>.</green>"
31+
ignored: <green>(!) You will no longer see messages from <gray><player></gray>.</green>
3232

3333
# Player has successfully been unignored
3434
# Same placeholders as ignored
35-
unignored: "<yellow>(!) You are no longer ignoring <gray><player></gray>.</yellow>"
35+
unignored: <yellow>(!) You are no longer ignoring <gray><player></gray>.</yellow>
3636

3737
channel:
3838
# Message channel created
@@ -63,30 +63,30 @@ channel:
6363
team-closed: <yellow>(!) Your chat messages will now be <gray>public</gray>.</yellow>
6464

6565
# Name for console/server that should appear as <sender> or <recipient> in messages
66-
console-name: "Server"
66+
console-name: Server
6767

6868
# Command usage format
6969
# Placeholders:
7070
# <command> - the command name
7171
# <usage> - the command usage parameters
72-
usage: "<yellow>(!) Usage:</yellow> <white>/<command> <usage></white>"
72+
usage: <yellow>(!) Usage:</yellow> <white>/<command> <usage></white>
7373

7474
# Plugin reloaded
75-
reloaded: "<green>(!) Plugin successfully reloaded.</green>"
75+
reloaded: <green>(!) Plugin successfully reloaded.</green>
7676

7777
toggle:
7878
disable:
7979
# Disable private messages
80-
message: "<yellow>(!) Receiving private messages is now disabled. Run again to re-enable.</yellow>"
80+
message: <yellow>(!) Receiving private messages is now disabled. Run again to re-enable.</yellow>
8181
# Placeholders:
8282
# <player> - the player's username
83-
other: "<green>(!) Receiving private messages now disabled for <gray><player></gray>.</green>"
83+
other: <green>(!) Receiving private messages now disabled for <gray><player></gray>.</green>
8484
enable:
8585
# Enable private messages
86-
message: "<green>(!) You can now receive private messages again.</green>"
86+
message: <green>(!) You can now receive private messages again.</green>
8787
# Placeholders:
8888
# <player> - the player's username
89-
other: "<green>(!) Re-enabled receiving of private messages for <gray><player></gray>.</green>"
89+
other: <green>(!) Re-enabled receiving of private messages for <gray><player></gray>.</green>
9090

9191
# Set custom global/public chat format. Disabled by default.
9292
#
@@ -105,50 +105,50 @@ chat-format: null
105105
# Error messages
106106
errors:
107107
# No permission
108-
no-permission: "<red>(!) You don't have permission to use this command.</red>"
108+
no-permission: <red>(!) You don't have permission to use this command.</red>
109109

110110
# Player has no username (somehow)
111-
invalid-player: "<red>(!) Invalid player.</red>"
111+
invalid-player: <red>(!) Invalid player.</red>
112112

113113
# Player not found
114114
# Placeholders:
115115
# <player> - the player's username
116-
player-not-found: "<red>(!) Player <gray><player></gray> not found.</red>"
116+
player-not-found: <red>(!) Player <gray><player></gray> not found.</red>
117117

118-
message-yourself: "<red>(!) You can't send a message to yourself.</red>"
118+
message-yourself: <red>(!) You can't send a message to yourself.</red>
119119

120-
nobody-reply: "<red>(!) You have no one to reply to.</red>"
120+
nobody-reply: <red>(!) You have no one to reply to.</red>
121121

122122
# The player that messaged you is no longer online
123123
# Placeholders:
124124
# <player> - the player's username
125-
reply-offline: "<red>(!) Player <gray><player></gray> is no longer online.</red>"
125+
reply-offline: <red>(!) Player <gray><player></gray> is no longer online.</red>
126126

127127
# Only players can use this command
128-
not-player: "<red>(!) You must be a player to use this command.</red>"
128+
not-player: <red>(!) You must be a player to use this command.</red>
129129

130130
# That player is not ignored
131131
# Placeholders:
132132
# <player> - the player's username
133-
not-ignored: "<red>(!) You are not ignoring that player.</red>"
133+
not-ignored: <red>(!) You are not ignoring that player.</red>
134134

135135
# Player cannot be ignored
136136
# Placeholders:
137137
# <player> - the player's username
138-
cannot-ignore: "<red>(!) You cannot ignore <gray><player></gray>.</red>"
138+
cannot-ignore: <red>(!) You cannot ignore <gray><player></gray>.</red>
139139

140140
# You are trying to ignore yourself
141-
ignore-yourself: "<red>(!) You cannot ignore yourself.</red>"
141+
ignore-yourself: <red>(!) You cannot ignore yourself.</red>
142142

143143
# Target player has never joined the server
144144
# Placeholders:
145145
# <player> - the player's username
146-
never-joined: "<red>(!) <gray><player></gray> has never joined this server.</red>"
146+
never-joined: <red>(!) <gray><player></gray> has never joined this server.</red>
147147

148148
# Target player have disabled their incoming private messages.
149149
# Placeholders:
150150
# <player> - the player's username
151-
incoming-disabled: "<red>(!) You cannot message <gray><player></gray> because they have disabled private messages.</red>"
151+
incoming-disabled: <red>(!) You cannot message <gray><player></gray> because they have disabled private messages.</red>
152152

153153
# Trying to message a team, but not in one
154-
not-in-team: "<red>(!) You are not in a team.</red>"
154+
not-in-team: <red>(!) You are not in a team.</red>

0 commit comments

Comments
 (0)