Skip to content

Commit

Permalink
random craft selection only targets pending craft
Browse files Browse the repository at this point in the history
  • Loading branch information
TangentFoxy committed Nov 19, 2016
1 parent 87f1f39 commit 4eee2ed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ksp.moon
Expand Up @@ -286,7 +286,7 @@ class extends lapis.Application
if @session.id
if user = Users\find id: @session.id
if user.admin
crafts = Crafts\select!
crafts = Crafts\select "WHERE status = 1"
math.randomseed(os.time()) -- this is terrible randomness, figure out how to fix it
rand = math.random(1,#crafts)
return redirect_to: @url_for "ksp_craft", id: crafts[rand].id
Expand Down

0 comments on commit 4eee2ed

Please sign in to comment.