|
|
@ -37,7 +37,9 @@ class Game(db.Model): |
|
|
|
for player in players: |
|
|
|
for player in players: |
|
|
|
if isinstance(player, GamePlayer): |
|
|
|
if isinstance(player, GamePlayer): |
|
|
|
player = player.user |
|
|
|
player = player.user |
|
|
|
locations.append(player.last_location(self)) |
|
|
|
location = player.last_location(self) |
|
|
|
|
|
|
|
if location: |
|
|
|
|
|
|
|
locations.append(location) |
|
|
|
return locations |
|
|
|
return locations |
|
|
|
|
|
|
|
|
|
|
|
def bunnies(self): |
|
|
|
def bunnies(self): |
|
|
|