Skip to content

Commit

Permalink
Egg Hunt Season
Browse files Browse the repository at this point in the history
  • Loading branch information
kaansoral committed Mar 21, 2024
1 parent 07f109b commit 0ff9176
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 15 deletions.
2 changes: 1 addition & 1 deletion admin.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ def executor_task(the_code):
@ndb.toplevel
def serve_executor_get():
domain=gdi(request); user=get_user(request,domain)
if not user or not getattr(user,"admin",False): return "no permission"
if not user or not getattr(user,"admin",False): return "no permission"+(is_sdk and " visit /admin/make after modifying serve_admin_maker() at admin.py" or "")
return whtml(request,"utility/htmls/executor.html",domain=gdi(request))

@app.route('/admin/executor',methods=['POST'])
Expand Down
18 changes: 7 additions & 11 deletions config.py
Original file line number Diff line number Diff line change
Expand Up @@ -114,20 +114,16 @@ class GG(): pass
#maps["desertland"]["key"]="jayson_desertland_copy"
pass

game_version=793
game_version=794
SALES=4+5+388+5101+125/20 #donation+manual+macos+steam+sales
update_notes=[
"Last Update [21st of February]",
"Easter: Egg Hunt, Wabbit Chase",
"Last Update [April 21st]",
"Included PR's:",
"Introduce tags for some debuffs #81",
"When Fishing or Mining something that uses open keep the phrase #84",
"Fixed URL in GitHub link #101",
"Fix small bug with async code snippets #102",
"Mob respawn adjustment through .grow #103",
"Fix infinite range for curse, cburst, and 3shot/5shot #104",
"Improve Computer and Super Computer UI #106",
"Change equip_batch's base cost from 1 to 0.5 #108",
"Fix throw skill to pierce immunity #109",
"Fix bug regarding shiny items #115",
"Add respawn time to game response #117",
"Fix bug with Giveaways #125",

]
ip_to_subdomain={ #IMPORTANT: SPECIAL PAGE RULES ARE NEEDED: https://dash.cloudflare.com/b6f5a13bded5fdd273e4a1cd3777162d/adventure.land/page-rules - uss1 / eus1 was best
"35.187.255.184":"asia1",
Expand Down
4 changes: 2 additions & 2 deletions design/drops.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@
#[0.0005,"candycane"],
#[0.0001,"open","xN"],
#[0.0004,"redenvelope"],
#[0.00005,"goldenegg"],
#[0.009,"open","eastereggs"], #originally 0.009
[0.00005,"goldenegg"],
[0.009,"open","eastereggs"], #originally 0.009
#[0.0001,"redenvelopev2"],
#[0.0001,"redenvelopev3"],
#[0.00005,"greenenvelope"],
Expand Down
2 changes: 1 addition & 1 deletion node/server.js
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ var events = {
valentines: false,
pinkgoo: 0, // every N minutes - 60
snowman: 20 * 60, // 1200 normally - 60 - at sprocess_game_data
egghunt: 0, // every N minutes - 60
egghunt: 60, // every N minutes - 60
halloween: false,
// RANDOM
goblin: false,
Expand Down

0 comments on commit 0ff9176

Please sign in to comment.