mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-22 12:41:09 +01:00
fixes foreigner quirk giving galactic uncommon to felinids (#53087)
This commit is contained in:
@@ -21,13 +21,13 @@
|
||||
/datum/quirk/foreigner/add()
|
||||
var/mob/living/carbon/human/H = quirk_holder
|
||||
H.add_blocked_language(/datum/language/common)
|
||||
if(ishumanbasic(H) || isfelinid(H))
|
||||
if(ishumanbasic(H))
|
||||
H.grant_language(/datum/language/uncommon)
|
||||
|
||||
/datum/quirk/foreigner/remove()
|
||||
var/mob/living/carbon/human/H = quirk_holder
|
||||
H.remove_blocked_language(/datum/language/common)
|
||||
if(ishumanbasic(H) || isfelinid(H))
|
||||
if(ishumanbasic(H))
|
||||
H.remove_language(/datum/language/uncommon)
|
||||
|
||||
/datum/quirk/vegetarian
|
||||
|
||||
Reference in New Issue
Block a user