diff --git a/assets/images/bgs/tombstone.png b/assets/images/bgs/tombstone.png deleted file mode 100644 index f148166b..00000000 Binary files a/assets/images/bgs/tombstone.png and /dev/null differ diff --git a/assets/images/medals/golden-marshmallow.png b/assets/images/medals/medal-golden-marshmallow.png similarity index 100% rename from assets/images/medals/golden-marshmallow.png rename to assets/images/medals/medal-golden-marshmallow.png diff --git a/source/net/core/Client.hx b/source/net/core/Client.hx index 16924a3b..5e8d151b 100644 --- a/source/net/core/Client.hx +++ b/source/net/core/Client.hx @@ -14,7 +14,10 @@ class Client if (client == null) { client = new HttpClient(); - client.defaultRequestHeaders = ["Content-Type" => "application/json"]; + client.defaultRequestHeaders = [ + "Content-Type" => "application/json", + "Access-Control-Allow-Origin" => "*", + ]; } return client; }