diff options
| author | Alexander Pickering <Alexander.Pickering@anondomain.site90.net> | 2016-02-27 17:39:53 -0500 |
|---|---|---|
| committer | Alexander Pickering <Alexander.Pickering@anondomain.site90.net> | 2016-02-27 17:39:53 -0500 |
| commit | 7196ee72bcec68bc0efe6af76e6644275c8b74ef (patch) | |
| tree | 217ff20f63f7d884309a0ab935761e8f65e641e7 /gamemode/hud/games/connectthedots.lua | |
| parent | 013139a91ac495ebc76429f04c9b921bd4d92ce2 (diff) | |
| download | wintersurvival2-7196ee72bcec68bc0efe6af76e6644275c8b74ef.tar.gz wintersurvival2-7196ee72bcec68bc0efe6af76e6644275c8b74ef.tar.bz2 wintersurvival2-7196ee72bcec68bc0efe6af76e6644275c8b74ef.zip | |
More work on rubickcircle minigame
Diffstat (limited to 'gamemode/hud/games/connectthedots.lua')
| -rw-r--r-- | gamemode/hud/games/connectthedots.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gamemode/hud/games/connectthedots.lua b/gamemode/hud/games/connectthedots.lua index fe6cef2..eab3521 100644 --- a/gamemode/hud/games/connectthedots.lua +++ b/gamemode/hud/games/connectthedots.lua @@ -112,7 +112,7 @@ Game.Draw = function(self) --print("X:" .. gui.MouseX() .. " Y:" .. gui.MouseY()) if(input.IsMouseDown(MOUSE_RIGHT)) then - self.Score = 100 + self.Score = math.max(0,self.Score) self.scoreboard:Remove() end end |
