- Mehr Randoms

- Zahl nicht mehr hardcodiert
This commit is contained in:
Andreas Bielawski 2016-06-28 17:01:08 +02:00
parent 7366b814fa
commit 81bdaea828

View File

@ -27,10 +27,11 @@ function fun:choose_random(user_name, other_user)
user_name..' wirft einen Gameboy auf '..other_user..'.',
user_name..' hetzt die NSA auf '..other_user..'.',
user_name..' ersetzt alle CDs von '..other_user..' durch Nickelback-CDs.',
other_user..' melkt '..user_name..'. *muuh* :D'
}
math.randomseed(os.time())
math.randomseed(os.time())
local random = math.random(15)
local random = math.random(#randoms)
return randoms[random]
end