fdsfsd
This commit is contained in:
parent
2d8387e6ce
commit
c8de772f08
2 changed files with 18 additions and 18 deletions
|
@ -197,12 +197,12 @@ AWARDS = {
|
||||||
"color": "text-black",
|
"color": "text-black",
|
||||||
"price": 1000
|
"price": 1000
|
||||||
},
|
},
|
||||||
"longpost": {
|
"pizzashill": {
|
||||||
"kind": "longpost",
|
"kind": "pizzashill",
|
||||||
"title": "Longpost",
|
"title": "Longpost",
|
||||||
"description": "Forces the recipient to make all posts/comments > 280 characters for 24 hours.",
|
"description": "Forces the recipient to make all posts/comments > 280 characters for 24 hours.",
|
||||||
"icon": "fas fa-book",
|
"icon": "fas fa-pizza",
|
||||||
"color": "text-green",
|
"color": "text-orange",
|
||||||
"price": 1000
|
"price": 1000
|
||||||
},
|
},
|
||||||
"flairlock": {
|
"flairlock": {
|
||||||
|
@ -385,12 +385,12 @@ AWARDS2 = {
|
||||||
"color": "text-black",
|
"color": "text-black",
|
||||||
"price": 1000
|
"price": 1000
|
||||||
},
|
},
|
||||||
"longpost": {
|
"pizzashill": {
|
||||||
"kind": "longpost",
|
"kind": "pizzashill",
|
||||||
"title": "Longpost",
|
"title": "Longpost",
|
||||||
"description": "Forces the recipient to make all posts/comments > 280 characters for 24 hours.",
|
"description": "Forces the recipient to make all posts/comments > 280 characters for 24 hours.",
|
||||||
"icon": "fas fa-book",
|
"icon": "fas fa-pizza",
|
||||||
"color": "text-green",
|
"color": "text-orange",
|
||||||
"price": 1000
|
"price": 1000
|
||||||
},
|
},
|
||||||
"flairlock": {
|
"flairlock": {
|
||||||
|
|
|
@ -98,12 +98,12 @@ def shop(v):
|
||||||
"price": 1000,
|
"price": 1000,
|
||||||
"MB": True
|
"MB": True
|
||||||
},
|
},
|
||||||
"longpost": {
|
"pizzashill": {
|
||||||
"kind": "longpost",
|
"kind": "pizzashill",
|
||||||
"title": "Longpost",
|
"title": "Longpost",
|
||||||
"description": "Forces the recipient to make all posts/comments > 280 characters for 24 hours.",
|
"description": "Forces the recipient to make all posts/comments > 280 characters for 24 hours.",
|
||||||
"icon": "fas fa-book",
|
"icon": "fas fa-pizza",
|
||||||
"color": "text-green",
|
"color": "text-orange",
|
||||||
"owned": 0,
|
"owned": 0,
|
||||||
"price": 1000,
|
"price": 1000,
|
||||||
"MB": True
|
"MB": True
|
||||||
|
@ -274,12 +274,12 @@ def buy(v, award):
|
||||||
"color": "text-black",
|
"color": "text-black",
|
||||||
"price": 1000
|
"price": 1000
|
||||||
},
|
},
|
||||||
"longpost": {
|
"pizzashill": {
|
||||||
"kind": "longpost",
|
"kind": "pizzashill",
|
||||||
"title": "Longpost",
|
"title": "Longpost",
|
||||||
"description": "Forces the recipient to make all posts/comments > 280 characters for 24 hours.",
|
"description": "Forces the recipient to make all posts/comments > 280 characters for 24 hours.",
|
||||||
"icon": "fas fa-book",
|
"icon": "fas fa-pizza",
|
||||||
"color": "text-green",
|
"color": "text-orange",
|
||||||
"price": 1000,
|
"price": 1000,
|
||||||
},
|
},
|
||||||
"flairlock": {
|
"flairlock": {
|
||||||
|
@ -538,7 +538,7 @@ def award_post(pid, v):
|
||||||
elif kind == "marsey":
|
elif kind == "marsey":
|
||||||
if author.marseyawarded: author.marseyawarded += 86400
|
if author.marseyawarded: author.marseyawarded += 86400
|
||||||
else: author.marseyawarded = time.time() + 86400
|
else: author.marseyawarded = time.time() + 86400
|
||||||
elif kind == "longpost":
|
elif kind == "pizzashill":
|
||||||
if author.longpost: author.longpost += 86400
|
if author.longpost: author.longpost += 86400
|
||||||
else: author.longpost = time.time() + 86400
|
else: author.longpost = time.time() + 86400
|
||||||
elif kind == "eye":
|
elif kind == "eye":
|
||||||
|
@ -671,7 +671,7 @@ def award_comment(cid, v):
|
||||||
elif kind == "marsey":
|
elif kind == "marsey":
|
||||||
if author.marseyawarded: author.marseyawarded += 86400
|
if author.marseyawarded: author.marseyawarded += 86400
|
||||||
else: author.marseyawarded = time.time() + 86400
|
else: author.marseyawarded = time.time() + 86400
|
||||||
elif kind == "longpost":
|
elif kind == "pizzashill":
|
||||||
if author.longpost: author.longpost += 86400
|
if author.longpost: author.longpost += 86400
|
||||||
else: author.longpost = time.time() + 86400
|
else: author.longpost = time.time() + 86400
|
||||||
elif kind == "eye":
|
elif kind == "eye":
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue