Fixed some .waifu related strings
This commit is contained in:
parent
94bc5c4928
commit
851093197c
2 changed files with 19 additions and 7 deletions
|
@ -70,7 +70,11 @@ public partial class Gambling
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
var msg = GetText(strs.waifu_claimed(Format.Bold(target.ToString()), N(amount)));
|
var msg = GetText(strs.waifu_claimed(
|
||||||
|
Format.Bold(ctx.User.ToString()),
|
||||||
|
Format.Bold(target.ToString()),
|
||||||
|
N(amount)));
|
||||||
|
|
||||||
if (w.Affinity?.UserId == ctx.User.Id)
|
if (w.Affinity?.UserId == ctx.User.Id)
|
||||||
msg += "\n" + GetText(strs.waifu_fulfilled(target, N(w.Price)));
|
msg += "\n" + GetText(strs.waifu_fulfilled(target, N(w.Price)));
|
||||||
else
|
else
|
||||||
|
@ -191,13 +195,21 @@ public partial class Gambling
|
||||||
}
|
}
|
||||||
|
|
||||||
if (user is null)
|
if (user is null)
|
||||||
|
{
|
||||||
await Response().Confirm(strs.waifu_affinity_reset).SendAsync();
|
await Response().Confirm(strs.waifu_affinity_reset).SendAsync();
|
||||||
|
}
|
||||||
else if (oldAff is null)
|
else if (oldAff is null)
|
||||||
await Response().Confirm(strs.waifu_affinity_set(Format.Bold(user.ToString()))).SendAsync();
|
{
|
||||||
|
await Response()
|
||||||
|
.Confirm(strs.waifu_affinity_set(Format.Bold(ctx.User.ToString()), Format.Bold(user.ToString())))
|
||||||
|
.SendAsync();
|
||||||
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
await Response()
|
await Response()
|
||||||
.Confirm(strs.waifu_affinity_changed(Format.Bold(oldAff.ToString()),
|
.Confirm(strs.waifu_affinity_changed(
|
||||||
|
Format.Bold(ctx.User.ToString()),
|
||||||
|
Format.Bold(oldAff.ToString()),
|
||||||
Format.Bold(user.ToString())))
|
Format.Bold(user.ToString())))
|
||||||
.SendAsync();
|
.SendAsync();
|
||||||
}
|
}
|
||||||
|
|
|
@ -307,13 +307,13 @@
|
||||||
"waifus_none": "No waifus have been claimed yet.",
|
"waifus_none": "No waifus have been claimed yet.",
|
||||||
"waifus_top_waifus": "Top Waifus",
|
"waifus_top_waifus": "Top Waifus",
|
||||||
"waifu_affinity_already": "your affinity is already set to that waifu or you're trying to remove your affinity while not having one.",
|
"waifu_affinity_already": "your affinity is already set to that waifu or you're trying to remove your affinity while not having one.",
|
||||||
"waifu_affinity_changed": "changed their affinity from {0} to {1}.\n\n*This is morally questionable.*🤔",
|
"waifu_affinity_changed": "{0} changed their affinity from {1} to {2}.\n\n*This is morally questionable.*🤔",
|
||||||
"waifu_affinity_cooldown": "You must wait {0} hours and {1} minutes in order to change your affinity again.",
|
"waifu_affinity_cooldown": "You must wait {0} hours and {1} minutes in order to change your affinity again.",
|
||||||
"waifu_affinity_reset": "Your affinity is reset. You no longer have a person you like.",
|
"waifu_affinity_reset": "Your affinity is reset. You no longer have a person you like.",
|
||||||
"waifu_affinity_set": "wants to be {0}'s waifu. Aww <3",
|
"waifu_affinity_set": "{0} wants to be {1}'s waifu. Aww <3",
|
||||||
"waifu_claimed": "claimed {0} as their waifu for {1}!",
|
"waifu_claimed": "{0} claimed {1} as their waifu for {2}!",
|
||||||
"waifu_divorced_like": "You have divorced a waifu who likes you. You heartless monster.\n{0} received {1} as a compensation.",
|
"waifu_divorced_like": "You have divorced a waifu who likes you. You heartless monster.\n{0} received {1} as a compensation.",
|
||||||
"waifu_egomaniac": "you can't set affinity to yourself, you egomaniac.",
|
"waifu_egomaniac": "You can't set affinity to yourself, you egomaniac.",
|
||||||
"waifu_fulfilled": "🎉 Their love is fulfilled! 🎉\n{0}'s new value is {1}!",
|
"waifu_fulfilled": "🎉 Their love is fulfilled! 🎉\n{0}'s new value is {1}!",
|
||||||
"waifu_isnt_cheap": "No waifu is that cheap. You must pay at least {0} to get a waifu, even if their actual value is lower.",
|
"waifu_isnt_cheap": "No waifu is that cheap. You must pay at least {0} to get a waifu, even if their actual value is lower.",
|
||||||
"waifu_not_enough": "You must pay {0} or more to claim that waifu!",
|
"waifu_not_enough": "You must pay {0} or more to claim that waifu!",
|
||||||
|
|
Loading…
Reference in a new issue