Skip to content

Commit

Permalink
Allow disabling of RaidSettings
Browse files Browse the repository at this point in the history
  • Loading branch information
Lacyway committed Oct 21, 2024
1 parent 25e7340 commit 60b8923
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
5 changes: 3 additions & 2 deletions assets/configs/fika.jsonc
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@
"optional": []
},
"useInertia": true,
"sharedQuestProgression": false
"sharedQuestProgression": false,
"canEditRaidSettings": true
},
"server": {
"giftedItemsLoseFIR": true,
Expand All @@ -40,4 +41,4 @@
"enable": true,
"easteregg": false
}
}
}
3 changes: 2 additions & 1 deletion assets/database/locales/global/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -93,5 +93,6 @@
"F_UI_UpnpFailed": "UPnP mapping failed. Make sure the selected port is not already open!\nDisable UPnP if you are using a VPN.",
"F_UI_InitWeather": "Generating weather...",
"F_Notification_RaidStarted": "{0} started a raid on {1}",
"F_Notification_ItemReceived": "You received a {0} from {1}"
"F_Notification_ItemReceived": "You received a {0} from {1}",
"F_Notification_RaidSettingsDisabled": "Editing of RaidSettings is disabled by the server host"
}
1 change: 1 addition & 0 deletions src/models/fika/config/IFikaConfigClient.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,5 @@ export interface IFikaConfigClient {
};
useInertia: boolean;
sharedQuestProgression: boolean;
canEditRaidSettings: boolean;
}

0 comments on commit 60b8923

Please sign in to comment.