Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Zonespace27 committed Dec 29, 2023
1 parent aa3e152 commit fd12eee
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions code/modules/mob/living/carbon/human/human.dm
Original file line number Diff line number Diff line change
Expand Up @@ -1749,10 +1749,10 @@
if(dizziness > 100 && !is_dizzy)
INVOKE_ASYNC(src, PROC_REF(dizzy_process))

/proc/setup_human(mob/living/carbon/human/target, mob/new_player/new_player)
/proc/setup_human(mob/living/carbon/human/target, mob/new_player/new_player, is_late_join = FALSE)
new_player.spawning = TRUE
new_player.close_spawn_windows()
new_player.client.prefs.copy_all_to(target)
new_player.client.prefs.copy_all_to(target, new_player.job, is_late_join)

if(new_player.client.prefs.be_random_body)
var/datum/preferences/rand_prefs = new()
Expand Down
2 changes: 1 addition & 1 deletion code/modules/mob/new_player/new_player.dm
Original file line number Diff line number Diff line change
Expand Up @@ -395,7 +395,7 @@

new_character.lastarea = get_area(loc)

setup_human(new_character, src)
setup_human(new_character, src, is_late_join)

new_character.client?.change_view(GLOB.world_view_size)

Expand Down

0 comments on commit fd12eee

Please sign in to comment.