Skip to content

Commit

Permalink
Hot fix for sell event
Browse files Browse the repository at this point in the history
  • Loading branch information
Zamirathe committed Apr 22, 2015
1 parent 617ad9b commit fe76f7a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions UconomyBasicShop/Properties/AssemblyInfo.cs
Expand Up @@ -32,5 +32,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.1.0.1")]
[assembly: AssemblyFileVersion("1.1.0.1")]
[assembly: AssemblyVersion("1.1.0.2")]
[assembly: AssemblyFileVersion("1.1.0.2")]
2 changes: 1 addition & 1 deletion UconomyBasicShop/UconomyBasicShop.cs
Expand Up @@ -395,7 +395,7 @@ public void Sell(RocketPlayer playerid, string msg)
decimal balance = Uconomy.Instance.Database.IncreaseBalance(playerid.CSteamID, addmoney);
message = String.Format(UconomyBasicShop.Instance.Configuration.SoldItems, amt, name, addmoney, Uconomy.Instance.Configuration.MoneyName, balance, Uconomy.Instance.Configuration.MoneyName);
if (UconomyBasicShop.Instance.OnShopSell != null)
UconomyBasicShop.Instance.OnShopSell(playerid, addmoney, amttosell, id);
UconomyBasicShop.Instance.OnShopSell(playerid, addmoney, amt, id);
RocketChatManager.Say(playerid, message);
}

Expand Down

0 comments on commit fe76f7a

Please sign in to comment.