Skip to content

Commit

Permalink
p
Browse files Browse the repository at this point in the history
  • Loading branch information
cktang88 committed Mar 14, 2020
1 parent 8efb379 commit 9654319
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion game.py
Expand Up @@ -24,7 +24,10 @@
def move(owner, num):
pass

def reinforce(owner, num):
def reinforce(owner, num, node_index):
if node_index not in nodes:
raise Exception("bad node")
nodes[node_index]
pass

# player index
Expand Down

0 comments on commit 9654319

Please sign in to comment.