From db587a2501799a2ff7a96f345259406630f5d1e3 Mon Sep 17 00:00:00 2001 From: justcool393 Date: Fri, 28 Oct 2022 01:21:05 -0500 Subject: [PATCH] i forgot a bloody comma ok --- files/templates/leaderboard.html | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/files/templates/leaderboard.html b/files/templates/leaderboard.html index fa88d062b..309f40a32 100644 --- a/files/templates/leaderboard.html +++ b/files/templates/leaderboard.html @@ -1,11 +1,10 @@ {% extends "settings2.html" %} {% block pagetitle %}Leaderboard{% endblock %} {% block content %} -{%- -set LEADERBOARDS = [ +{%- set LEADERBOARDS = [ ('coins', 'Coins', True, True), ('spent', 'Spent in shop', True, True), ('truescore', 'Truescore', True, True), ('followers', 'Followers', True, True), ('posts', 'Posts', True, True), ('comments', 'Comments', True, True), ('awards', 'Awards', True, True), ('badges', 'Badges', True, True), - ('marseys', 'Marseys', SITE_NAME == 'rDrama', True) ('blocked', 'Blocked', True, True), ('owned-hats', 'Owned hats', True, True), ('designed-hats', 'Designed hats', True, False) + ('marseys', 'Marseys', SITE_NAME == 'rDrama', True), ('blocked', 'Blocked', True, True), ('owned-hats', 'Owned hats', True, True), ('designed-hats', 'Designed hats', True, False) ] -%}