From 48ee791d982b1878024533bca96d087001393d73 Mon Sep 17 00:00:00 2001 From: Erki Date: Sun, 14 Feb 2021 02:51:37 +0200 Subject: [PATCH] Fix psync disabled not working (#11184) * Fix the bug * log da change --- code/modules/http/forumuser_api.dm | 2 +- html/changelogs/skull132_fix-psync-disable.yml | 5 +++++ 2 files changed, 6 insertions(+), 1 deletion(-) create mode 100644 html/changelogs/skull132_fix-psync-disable.yml diff --git a/code/modules/http/forumuser_api.dm b/code/modules/http/forumuser_api.dm index d3611f354f2..d750d4715d2 100644 --- a/code/modules/http/forumuser_api.dm +++ b/code/modules/http/forumuser_api.dm @@ -19,7 +19,7 @@ var/global/forumuser_api_key = null discord_id = data["discord_id"] ckey = data["ckey"] - if(data["psync_game_disalbed"] == 1) //This here is needed because the data can be null, 1 or 0 + if(data["psync_game_disabled"] == 1) //This here is needed because the data can be null, 1 or 0 psync_game_disabled = TRUE /datum/http_request/forumuser_api diff --git a/html/changelogs/skull132_fix-psync-disable.yml b/html/changelogs/skull132_fix-psync-disable.yml new file mode 100644 index 00000000000..35dd6ad2634 --- /dev/null +++ b/html/changelogs/skull132_fix-psync-disable.yml @@ -0,0 +1,5 @@ +author: Skull132 +delete-after: True + +changes: + - backend: "Permissions sync disable functionality should now work." \ No newline at end of file