forked from Cavemanon/SnootGame
Randomize point rewarding choices
This commit is contained in:
@ -20,6 +20,7 @@ init -1 python:
|
||||
mod_menu_access = []
|
||||
|
||||
init python:
|
||||
|
||||
import random
|
||||
import webbrowser
|
||||
#function for insult layers
|
||||
@ -48,6 +49,12 @@ init python:
|
||||
if persistent.autoup == None:
|
||||
persistent.autoup = False
|
||||
|
||||
def randomize_choices(choices):
|
||||
# fine for size of 2
|
||||
if (renpy.random.randint(0, 1)):
|
||||
choices.reverse()
|
||||
return choices
|
||||
|
||||
pass
|
||||
|
||||
transform randPosition:
|
||||
|
Reference in New Issue
Block a user