From 992c79a100ce8ed2fe62148bd5909c8185de6848 Mon Sep 17 00:00:00 2001 From: Thomas Andres Gomez Date: Sat, 30 Nov 2024 23:10:00 +0100 Subject: [PATCH] Change the default occupation mode to true on occupation skill. --- .../screen/characterSheet/edit/CharacterSheetEditViewModel.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composeApp/src/commonMain/kotlin/com/pixelized/desktop/lwa/screen/characterSheet/edit/CharacterSheetEditViewModel.kt b/composeApp/src/commonMain/kotlin/com/pixelized/desktop/lwa/screen/characterSheet/edit/CharacterSheetEditViewModel.kt index d318f25..c250e7d 100644 --- a/composeApp/src/commonMain/kotlin/com/pixelized/desktop/lwa/screen/characterSheet/edit/CharacterSheetEditViewModel.kt +++ b/composeApp/src/commonMain/kotlin/com/pixelized/desktop/lwa/screen/characterSheet/edit/CharacterSheetEditViewModel.kt @@ -44,7 +44,7 @@ class CharacterSheetEditViewModel( id = id, label = getString(Res.string.character_sheet_edit__skills__special_title), options = listOf( - skillFactory.occupationOption(checked = false), + skillFactory.occupationOption(checked = true), skillFactory.deleteOption { deleteSkill(skillId = id) } ), )