diff --git a/modular_doppler/modular_quirks/atypical_tastes/atypical_tastes.dm b/modular_doppler/modular_quirks/atypical_tastes/atypical_tastes.dm index ee0f2ea7389db..85f929b79d94a 100644 --- a/modular_doppler/modular_quirks/atypical_tastes/atypical_tastes.dm +++ b/modular_doppler/modular_quirks/atypical_tastes/atypical_tastes.dm @@ -10,7 +10,7 @@ GLOBAL_LIST_INIT(possible_quirk_atypical_tastes, list( /datum/quirk/atypical_tastes name = "Atypical Tastes" desc = "For one reason or another, your tastes in food are similar to that of another species." - value = 8 + value = 0 mob_trait = TRAIT_ATYPICAL_TASTER icon = FA_ICON_PLATE_WHEAT diff --git a/tgui/packages/tgui/interfaces/PreferencesMenu/preferences/features/character_preferences/atypical_taster.tsx b/tgui/packages/tgui/interfaces/PreferencesMenu/preferences/features/character_preferences/atypical_taster.tsx new file mode 100644 index 0000000000000..49daa39657718 --- /dev/null +++ b/tgui/packages/tgui/interfaces/PreferencesMenu/preferences/features/character_preferences/atypical_taster.tsx @@ -0,0 +1,7 @@ +import { FeatureChoiced } from '../base'; +import { FeatureDropdownInput } from '../dropdowns'; + +export const atypical_tastes: FeatureChoiced = { + name: 'Atypical Tastes', + component: FeatureDropdownInput, +};