Cleans up comments for localization (#260)

This commit is contained in:
Kamron Batman 2020-09-20 12:48:10 -07:00 committed by GitHub
parent fd9ec089f7
commit 13e2693b59
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
52 changed files with 751 additions and 798 deletions

View file

@ -117,21 +117,14 @@ namespace Server.Engines.Harvest
{
if (Utility.RandomDouble() < 0.5)
{
player.SendLocalizedMessage(
1055086,
"",
0x59
); // You pull a shellfish out of the water, and find a rainbow pearl inside of it.
// You pull a shellfish out of the water, and find a rainbow pearl inside of it.
player.SendLocalizedMessage(1055086, "", 0x59);
obj.CurProgress++;
}
else
{
player.SendLocalizedMessage(
1055087,
"",
0x2C
); // You pull a shellfish out of the water, but it doesn't have a rainbow pearl.
// You pull a shellfish out of the water, but it doesn't have a rainbow pearl.
player.SendLocalizedMessage(1055087, "", 0x2C);
}
return true;