aboutsummaryrefslogtreecommitdiff
path: root/pickups.lua
diff options
context:
space:
mode:
Diffstat (limited to 'pickups.lua')
-rw-r--r--pickups.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/pickups.lua b/pickups.lua
index b8e0a6b..400917c 100644
--- a/pickups.lua
+++ b/pickups.lua
@@ -2,9 +2,9 @@ local randompickups = {}
pickuptimer = 10
function randompickups.update()
pickuptimer -= 1/60
- if (pickuptimer < 0) then
+ if pickuptimer < 0 then
pickuptimer = 10
- if rnd(100) > 93 then
+ if rnd(100) > 90 then
addpickup(128, rnd(80)+20)
end
end