muffin v7.5.4
This commit is contained in:
parent
40d48d62b0
commit
a8f2c1df37
14 changed files with 1093 additions and 957 deletions
|
|
@ -97,18 +97,7 @@ internal sealed class ChocoboNameHandler : IDisposable
|
|||
{
|
||||
return "Kweh";
|
||||
}
|
||||
string text2 = text.Substring(0, 1).ToUpperInvariant();
|
||||
string text3;
|
||||
if (text.Length <= 1)
|
||||
{
|
||||
text3 = string.Empty;
|
||||
}
|
||||
else
|
||||
{
|
||||
string text4 = text;
|
||||
text3 = text4.Substring(1, text4.Length - 1).ToLowerInvariant();
|
||||
}
|
||||
return text2 + text3;
|
||||
return text.Substring(0, 1).ToUpperInvariant() + ((text.Length > 1) ? text.Substring(1).ToLowerInvariant() : string.Empty);
|
||||
}
|
||||
|
||||
private unsafe void FireInputStringCallback(AtkUnitBase* addon, string text)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue