Fixed wording for notifications so it sounds more natural.
This commit is contained in:
@@ -58,7 +58,7 @@ mute() {
|
||||
if [[ "$2" == "me" ]]; then
|
||||
[[ $notify ]] && notify "You muted yourself."
|
||||
else
|
||||
[[ $notify ]] && notify "$2 muted themselves."
|
||||
[[ $notify ]] && notify "$2 muted."
|
||||
fi
|
||||
}
|
||||
|
||||
@@ -66,7 +66,7 @@ unmute() {
|
||||
if [[ "$2" == "me" ]]; then
|
||||
[[ $notify ]] && notify "You unmuted yourself."
|
||||
else
|
||||
[[ $notify ]] && notify "$2 unmuted themselves."
|
||||
[[ $notify ]] && notify "$2 unmuted."
|
||||
fi
|
||||
}
|
||||
|
||||
@@ -74,7 +74,7 @@ deafen() {
|
||||
if [[ "$2" == "me" ]]; then
|
||||
[[ $notify ]] && notify "You deafened yourself."
|
||||
else
|
||||
[[ $notify ]] && notify "$2 deafened themselves."
|
||||
[[ $notify ]] && notify "$2 deafened."
|
||||
fi
|
||||
}
|
||||
|
||||
@@ -82,7 +82,7 @@ undeafen() {
|
||||
if [[ "$2" == "me" ]]; then
|
||||
[[ $notify ]] && notify "You undeafened yourself."
|
||||
else
|
||||
[[ $notify ]] && notify "$2 undeafened themselves."
|
||||
[[ $notify ]] && notify "$2 undeafened."
|
||||
fi
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user