From 23f8be8dac4f0c7fe075cab0df76d4f754797181 Mon Sep 17 00:00:00 2001 From: 1029chris <1029chris@gmail.com> Date: Thu, 11 Aug 2016 22:53:03 -0700 Subject: Popups at start now come up more randomly --- system.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/system.lua b/system.lua index 186f356..d4386f9 100644 --- a/system.lua +++ b/system.lua @@ -18,7 +18,7 @@ function updateSystem(dt) addPopup(false, sys.w/2-300, sys.h/2-200, 600, 400, 1, false, true) end if v2.startTime >= v2.startPopups and v2.start == false then - v2.startPopups = v2.startPopups + 5 + v2.startPopups = v2.startPopups + math.random(2,10) addPopup(true) end end -- cgit