From e7b78f418abb6f1e6bbcb72180b257f7cc649255 Mon Sep 17 00:00:00 2001 From: Gesche Gierse Date: Thu, 24 Jan 2019 12:28:38 +0100 Subject: [PATCH] add town id where to go after death on player create --- accounts/views.py | 1 + 1 file changed, 1 insertion(+) diff --git a/accounts/views.py b/accounts/views.py index 4cd76b7..4082ed7 100644 --- a/accounts/views.py +++ b/accounts/views.py @@ -86,6 +86,7 @@ class CreateCharView(LoginRequiredMixin, FormView): manamax=start_mana, cap=start_cap, account_id=account.id, + town_id=rookgaard.id, ) return super(CreateCharView, self).form_valid(form)