mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-26 14:39:58 +01:00
Fixes the privacy policy showing up after being accepted (#5298)
<!-- Write **BELOW** The Headers and **ABOVE** The comments else it may not be viewable. --> <!-- You can view Contributing.MD for a detailed description of the pull request process. --> ## About The Pull Request See the title. Also fixes: https://github.com/Bubberstation/Bubberstation/issues/5297 <!-- Describe The Pull Request. Please be sure every change is documented or this can delay review and even discourage maintainers from merging your PR! --> <!-- Please make sure to actually test your PRs. If you have not tested your PR mention it. --> ## Why It's Good For The Game Fixes good <!-- Argue for the merits of your changes and how they benefit the game, especially if they are controversial and/or far reaching. If you can't actually explain WHY what you are doing will improve the game, then it probably isn't good for the game in the first place. --> ## Proof Of Testing It didn't pop up when I joined the game locally. <!-- Compile and run your code locally. Make sure it works. This is the place to show off your changes! We are not responsible for testing your features. --> ## Changelog <!-- If your PR modifies aspects of the game that can be concretely observed by players or admins you should add a changelog. If your change does NOT meet this description, remove this section. Be sure to properly mark your PRs to prevent unnecessary GBP loss. You can read up on GBP and its effects on PRs in the tgstation guides for contributors. Please note that maintainers freely reserve the right to remove and add tags should they deem it appropriate. You can attempt to finagle the system all you want, but it's best to shoot for clear communication right off the bat. --> 🆑 fix: The privacy policy no longer pops up after you've already accepted it once. /🆑 <!-- Both 🆑's are required for the changelog to work! You can put your name to the right of the first 🆑 if you want to overwrite your GitHub username as author ingame. --> <!-- You can use multiple of the same prefix (they're only used for the icon ingame) and delete the unneeded ones. Despite some of the tags, changelogs should generally represent how a player might be affected by the changes rather than a summary of the PR's contents. --> <!-- By opening a pull request. You have read and understood the repository rules located on the main README.md on this project. -->
This commit is contained in:
@@ -64,7 +64,7 @@ We honor your rights to your data, including those provided under regulations li
|
||||
|
||||
How to Make a Request:
|
||||
|
||||
To exercise any of these rights, you must contact us via the designated contact email below.
|
||||
To exercise any of these rights, you must contact us via the designated contact email at the bottom of the policy page.
|
||||
|
||||
Limitations:
|
||||
|
||||
@@ -75,7 +75,7 @@ Limitations:
|
||||
|
||||
8. CHILDREN’S PRIVACY
|
||||
|
||||
Bubberstation prohibits minors from using it’s platforms. Bubberstation is forbidden for persons under the age of 18 and the applicable age of majority in the jurisdiction from which Bubberstation is accessed. As indicated throughout this Privacy Notice, some users may be asked to provide some information to us and our service providers for us to make sure that you are over the age of majority required to have access to Bubberstation. We do not knowingly process personal information from minors. If you are the parent or legal guardian of a minor who has provided us with personal information, then please contact us at https://discord.gg/AvjrTqnqEx in the #contact-staff channel to have that minor’s personal information deleted.
|
||||
Bubberstation prohibits minors from using its platforms. Bubberstation is forbidden for persons under the age of 18 and the applicable age of majority in the jurisdiction from which Bubberstation is accessed. As indicated throughout this Privacy Notice, some users may be asked to provide some information to us and our service providers for us to make sure that you are over the age of majority required to have access to Bubberstation. We do not knowingly process personal information from minors. If you are the parent or legal guardian of a minor who has provided us with personal information, then please contact us at contact.bubberstation@gmail.com to have that minor’s personal information deleted.
|
||||
|
||||
9. CHANGES TO THIS PRIVACY POLICY
|
||||
|
||||
@@ -83,4 +83,4 @@ We reserve the right to modify this Privacy Policy at any time. Any changes will
|
||||
|
||||
10. CONTACT US
|
||||
|
||||
If you have any questions about this Privacy Policy or wish to exercise your data rights, please contact us: https://discord.gg/AvjrTqnqEx at #contact-staff
|
||||
If you have any questions about this Privacy Policy or wish to exercise your data rights, please contact us: contact.bubberstation@gmail.com
|
||||
|
||||
@@ -0,0 +1,7 @@
|
||||
/datum/preferences/load_preferences()
|
||||
. = ..()
|
||||
savefile.get_entry("privacy_policy_acknowledged", privacy_policy_acknowledged)
|
||||
|
||||
/datum/preferences/save_preferences()
|
||||
. = ..()
|
||||
savefile.set_entry("privacy_policy_acknowledged", privacy_policy_acknowledged)
|
||||
@@ -9296,6 +9296,7 @@
|
||||
#include "modular_zubbers\code\modules\client\client_color.dm"
|
||||
#include "modular_zubbers\code\modules\client\client_procs.dm"
|
||||
#include "modular_zubbers\code\modules\client\preferences.dm"
|
||||
#include "modular_zubbers\code\modules\client\preferences_savefile.dm"
|
||||
#include "modular_zubbers\code\modules\client\ssd.dm"
|
||||
#include "modular_zubbers\code\modules\client\autopunctuation\preferences.dm"
|
||||
#include "modular_zubbers\code\modules\client\flavor_text\flavor_text.dm"
|
||||
|
||||
Reference in New Issue
Block a user