This commit is contained in:
Aevann1 2022-02-14 21:16:38 +02:00
parent 1c84399650
commit f297843653
2 changed files with 3 additions and 3 deletions

View file

@ -135,7 +135,7 @@ def create_sub2(v):
sub = g.db.query(Sub).filter_by(name=name).one_or_none()
if not sub:
cost = v.subs_created * 25
cost = v.subs_created * 50
if v.coins < cost:
return render_template("sub/create_sub.html", v=v, error="You don't have enough coins!"), 403