Skip to content

Commit

Permalink
Update mind.dm
Browse files Browse the repository at this point in the history
  • Loading branch information
kokolo21 committed Feb 5, 2025
1 parent 07aa398 commit 93fb23c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions code/datums/mind.dm
Original file line number Diff line number Diff line change
Expand Up @@ -395,9 +395,9 @@

/datum/mind/proc/print_levels(user)
var/list/shown_skills = list()
for(var/datum/skill/S in known_skills)
if(known_skills[S]) // Do we actually have a level in this?
shown_skills += S
for(var/i in known_skills)
if(known_skills[i]) //Do we actually have a level in this?
shown_skills += i
if(!length(shown_skills))
to_chat(user, span_warning("I don't have any skills."))
return
Expand Down

0 comments on commit 93fb23c

Please sign in to comment.