We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dfe3114 commit c8f693cCopy full SHA for c8f693c
src/features/game/save/GameSaveRequests.ts
@@ -12,10 +12,6 @@ import { FullSaveState } from './GameSaveTypes';
12
* @param fullSaveState - the entire game data that needs to be saved, including game state and userstate
13
*/
14
export async function saveData(fullSaveState: FullSaveState) {
15
- if (SourceAcademyGame.getInstance().getAccountInfo().role !== 'student') {
16
- return;
17
- }
18
-
19
const options = {
20
method: 'PUT',
21
headers: createHeaders(SourceAcademyGame.getInstance().getAccountInfo().accessToken),
0 commit comments