mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-29 16:18:01 +01:00
Fix Tongues Displaying Food Preferences Incorrectly (#76537)
## About The Pull Request It fixes food preferences displaying incorrectly when examining tongues. ## Why It's Good For The Game It's unreadable currently. **Before**  **After**  ## Changelog 🆑 fix: fixed food preferences displaying incorrectly when examining tongues /🆑
This commit is contained in:
@@ -56,11 +56,11 @@
|
||||
. = ..()
|
||||
if(HAS_TRAIT(user, TRAIT_ENTRAILS_READER) || (user.mind && HAS_TRAIT(user.mind, TRAIT_ENTRAILS_READER)) || isobserver(user))
|
||||
if(liked_foodtypes)
|
||||
. += span_info("This tongue has an affinity the taste of [english_list(bitfield_to_list(liked_foodtypes), FOOD_FLAGS_IC)].")
|
||||
. += span_info("This tongue has an affinity for the taste of [english_list(bitfield_to_list(liked_foodtypes, FOOD_FLAGS_IC))].")
|
||||
if(disliked_foodtypes)
|
||||
. += span_info("This tongue has an aversion for taste of [english_list(bitfield_to_list(disliked_foodtypes), FOOD_FLAGS_IC)].")
|
||||
. += span_info("This tongue has an aversion for the taste of [english_list(bitfield_to_list(disliked_foodtypes, FOOD_FLAGS_IC))].")
|
||||
if(toxic_foodtypes)
|
||||
. += span_info("This tongue's physiology makes [english_list(bitfield_to_list(toxic_foodtypes), FOOD_FLAGS_IC)] toxic.")
|
||||
. += span_info("This tongue's physiology makes [english_list(bitfield_to_list(toxic_foodtypes, FOOD_FLAGS_IC))] toxic.")
|
||||
|
||||
/**
|
||||
* Used in setting up the "languages possible" list.
|
||||
|
||||
Reference in New Issue
Block a user