Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Correct the game The Forest spelling #50

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions app.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

from dotenv import load_dotenv
from flask import Flask, jsonify, render_template, request
from flask_cors import CORS

from discordgsm.database import Database
from discordgsm.environment import env, environment
Expand All @@ -15,6 +16,8 @@
load_dotenv()

app = Flask(__name__, static_url_path='', static_folder='public/static', template_folder='public')
cors = CORS(app, resources={r"/api/*": {"origins": "*"}})

cmd = [command.to_dict() for command in tree.get_commands(guild=None if public or len(whitelist_guilds) <= 0 else whitelist_guilds[0])]


Expand Down
2 changes: 1 addition & 1 deletion discordgsm/games.csv
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ fear,F.E.A.R. (2005),gamespy2,port_query=27888
fivem,Grand Theft Auto V - FiveM (2013),fivem,port=30120
flashpoint,Operation Flashpoint: Cold War Crisis (2001),gamespy1,port=2302;port_query_offset=1
flashpointresistance,Operation Flashpoint: Resistance (2002),gamespy1,port=2302;port_query_offset=1
forrest,The Forrest (2014),source,port=27015;port_query_offset=1
forest,The Forest (2014),source,port=27015;port_query_offset=1
fortressforever,Fortress Forever (2007),source,port=27015
fs22,Farming Simulator 22 (2021),source,port=27015

Expand Down