Skip to content

Commit

Permalink
add different orientation for 323
Browse files Browse the repository at this point in the history
  • Loading branch information
ImpleLee committed Jul 6, 2024
1 parent 2917051 commit 332631d
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion parts/modes/spinren.lua
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,10 @@ local randomizer=function(RND)
this=1
elseif last[2]==1 then
local r=RND:random(1,5)
this=r==1 and 4 or 5-ret
this=
r==1 and 4 or
r<4 and ret or
5-ret
elseif last[2]==4 then
this=RND:random(1,2)==1 and 1 or 5-ret
else
Expand Down

0 comments on commit 332631d

Please sign in to comment.