From fade341344d769dc77d2785e8a6fc144511db09d Mon Sep 17 00:00:00 2001 From: UnknownShadow200 Date: Sat, 25 Feb 2017 14:12:16 +1100 Subject: [PATCH] Fix ZS lottery --- MCGalaxy/Games/ZombieSurvival/Rewards.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MCGalaxy/Games/ZombieSurvival/Rewards.cs b/MCGalaxy/Games/ZombieSurvival/Rewards.cs index 6d72c2193..3a483e5ae 100644 --- a/MCGalaxy/Games/ZombieSurvival/Rewards.cs +++ b/MCGalaxy/Games/ZombieSurvival/Rewards.cs @@ -134,7 +134,7 @@ namespace MCGalaxy.Games.ZS { + amount + " " + Server.moneys); } game.Lottery.Clear(); - winner.SetMoney(winner.money + 10); + winner.SetMoney(winner.money + amount); } static int GetMoneyReward(Player pl, Player[] alive, Random rand) {