Skip to content

Commit

Permalink
Merge pull request #670 from Sunev/fix_Lorelei
Browse files Browse the repository at this point in the history
fix Endless loop related to Lorelei
  • Loading branch information
uhyo committed Jul 2, 2020
2 parents 5d2c076 + dc68cea commit 79a4a08
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion server/rpc/game/game.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -13269,7 +13269,8 @@ module.exports.actions=(req,res,ss)->
category = null
job = null
team = null
while true
sub_counter = 0
while sub_counter++ < 300
# 前のループで確保したものが残っていたら返す
if category? || team?
if category?
Expand Down

0 comments on commit 79a4a08

Please sign in to comment.