[MIRROR] Removes "availible" mispellings in codebase (#427)

* Removes "availible" mispellings in codebase (#53046)

* AVAILABLE

* Rebuild tgui

Co-authored-by: Aleksej Komarov <stylemistake@gmail.com>

* Removes "availible" mispellings in codebase

Co-authored-by: tralezab <40974010+tralezab@users.noreply.github.com>
Co-authored-by: Aleksej Komarov <stylemistake@gmail.com>
This commit is contained in:
SkyratBot
2020-08-20 02:14:11 +02:00
committed by GitHub
parent 3ef712a8d4
commit d2778728a5
15 changed files with 52 additions and 52 deletions

View File

@@ -1351,24 +1351,24 @@ Traitors and the like can also be revived with the previous role mostly intact.
var/add_or_remove = input("Remove/Add?", "Trait Remove/Add") as null|anything in list("Add","Remove")
if(!add_or_remove)
return
var/list/availible_traits = list()
var/list/available_traits = list()
switch(add_or_remove)
if("Add")
for(var/key in GLOB.traits_by_type)
if(istype(D,key))
availible_traits += GLOB.traits_by_type[key]
available_traits += GLOB.traits_by_type[key]
if("Remove")
if(!GLOB.trait_name_map)
GLOB.trait_name_map = generate_trait_name_map()
for(var/trait in D.status_traits)
var/name = GLOB.trait_name_map[trait] || trait
availible_traits[name] = trait
available_traits[name] = trait
var/chosen_trait = input("Select trait to modify", "Trait") as null|anything in sortList(availible_traits)
var/chosen_trait = input("Select trait to modify", "Trait") as null|anything in sortList(available_traits)
if(!chosen_trait)
return
chosen_trait = availible_traits[chosen_trait]
chosen_trait = available_traits[chosen_trait]
var/source = "adminabuse"
switch(add_or_remove)