Skip to content

Instantly share code, notes, and snippets.

@laxamenator
Created February 10, 2018 20:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save laxamenator/04fe68d2fb823f961a2db673415faa8f to your computer and use it in GitHub Desktop.
Save laxamenator/04fe68d2fb823f961a2db673415faa8f to your computer and use it in GitHub Desktop.
import random
from Game.Const import Const
from Game.Player import Player
class Clueless(Player): # Always votes randomly
def getSteemUser(self):
return "@laxam"
def voteForElimination(self, context):
return random.choice(context.activePlayers.values())
def voteForTie(self, context):
return random.choice(context.currentTies.values())
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment