diff --git a/files/routes/settings.py b/files/routes/settings.py index 27c2dd701..d1991f4a8 100644 --- a/files/routes/settings.py +++ b/files/routes/settings.py @@ -339,8 +339,8 @@ def settings_profile_post(v): house = request.values.get("house") if house and house in ("None","Furry","Femboy","Vampire","Racist"): - if v.coins >= 500: v.coins -= 500 - elif v.procoins >= 500: v.procoins -= 500 + if v.coins >= 2000: v.coins -= 2000 + elif v.procoins >= 2000: v.procoins -= 2000 else: abort(403) if house == "None": house = None diff --git a/files/templates/settings_profile.html b/files/templates/settings_profile.html index 302b9c65e..e6d2982c8 100644 --- a/files/templates/settings_profile.html +++ b/files/templates/settings_profile.html @@ -54,9 +54,9 @@
-

Change your house (cost: 500 coins or marseybux).

+

Change your house (cost: 2000 coins or marseybux).

- {% for entry in ("None","Furry","Femboy","Vampire","Racist") %}