From 01ba3871caf670001a2893b88acfcaf3c1ed8a6b Mon Sep 17 00:00:00 2001 From: cib Date: Thu, 18 Oct 2012 15:33:46 +0200 Subject: [PATCH] Fixed the bug where 'Show Own Skills' wouldn't work. --- code/modules/mob/new_player/preferences.dm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/code/modules/mob/new_player/preferences.dm b/code/modules/mob/new_player/preferences.dm index 9a098946cf6..a0ddc987a63 100644 --- a/code/modules/mob/new_player/preferences.dm +++ b/code/modules/mob/new_player/preferences.dm @@ -1163,6 +1163,8 @@ datum/preferences character.h_style = h_style character.f_style = f_style + character.skills = skills + // Destroy/cyborgize organs for(var/name in organ_data) var/datum/organ/external/O = character.organs[name]