Revert "Tradeband and Gutterspeak now have a different font than Tradeband."

This reverts commit b5906bba39.

Conflicts:
	code/modules/mob/living/carbon/human/human.dm
This commit is contained in:
ZomgPonies
2014-01-15 06:54:46 -05:00
parent 3a540cbbce
commit d40ebc5cc5
6 changed files with 37 additions and 33 deletions
+3 -4
View File
@@ -303,9 +303,6 @@
src << alert("[rank] is not available. Please try another.")
return 0
spawning = 1
close_spawn_windows()
job_master.AssignRole(src, rank, 1)
var/mob/living/carbon/human/character = create_character() //creates the human and transfers vars and mind
@@ -377,7 +374,6 @@
if(client.prefs.species)
chosen_species = all_species[client.prefs.species]
if(chosen_species)
if(is_alien_whitelisted(src, client.prefs.species) || !config.usealienwhitelist || !(chosen_species.flags & IS_WHITELISTED) || (client.holder.rights & R_ADMIN) )// Have to recheck admin due to no usr at roundstart. Latejoins are fine though.
switch(chosen_species.name)
if("Slime People")
@@ -399,10 +395,13 @@
if("Human")
new_character = new /mob/living/carbon/human/human(loc)
// new_character.set_species(client.prefs.species)
if(chosen_species.language)
new_character.add_language(chosen_species.language)
else
new_character = new /mob/living/carbon/human(loc)
new_character.lastarea = get_area(loc)
var/datum/language/chosen_language
if(client.prefs.language)
chosen_language = all_languages["[client.prefs.language]"]