mirror of
https://github.com/islehorse/HISP.git
synced 2025-04-23 13:15:53 +12:00
Fix bugz
This commit is contained in:
parent
7216ade563
commit
5e460923dc
8 changed files with 132 additions and 99 deletions
|
@ -451,6 +451,7 @@ namespace HISP.Game
|
|||
// Sec Codes
|
||||
public static string InvalidSecCodeError;
|
||||
public static string YouEarnedAnItemFormat;
|
||||
public static string YouEarnedAnItemButInventoryWasFullFormat;
|
||||
public static string YouLostAnItemFormat;
|
||||
public static string YouEarnedMoneyFormat;
|
||||
public static string BeatHighscoreFormat;
|
||||
|
@ -1245,6 +1246,10 @@ namespace HISP.Game
|
|||
{
|
||||
return YouLostAnItemFormat.Replace("%ITEM%", itemName);
|
||||
}
|
||||
public static string FormatYouEarnedAnItemButInventoryFullMessage(string itemName)
|
||||
{
|
||||
return YouEarnedAnItemButInventoryWasFullFormat.Replace("%ITEM%", itemName);
|
||||
}
|
||||
public static string FormatYouEarnedAnItemMessage(string itemName)
|
||||
{
|
||||
return YouEarnedAnItemFormat.Replace("%ITEM%", itemName);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue