Skip to content

Commit

Permalink
Fix: Tracked playtime fixes (#57)
Browse files Browse the repository at this point in the history
* Xeno display fix

* FC time fix
  • Loading branch information
goose4429 authored and Bizzonium committed Dec 2, 2022
1 parent 06d4d17 commit 393365c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion code/datums/jobs/job/job_exp.dm
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ GLOBAL_PROTECT(exp_to_update)
return_text += "<UL>"
var/list/exp_data = list()
for(var/category in SSjob.name_occupations)
if(!(category in GLOB.jobs_regular_all))
if(!((category in GLOB.jobs_regular_all) || (category in GLOB.jobs_xeno)))
continue
if(play_records[category])
exp_data[category] = text2num(play_records[category])
Expand Down
2 changes: 1 addition & 1 deletion code/datums/jobs/job/shipside.dm
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ Godspeed, captain! And remember, you are not above the law."})
comm_title = "FCDR"
total_positions = 1

exp_requirements = XP_REQ_EXPERT
exp_requirements = XP_REQ_INTERMEDIATE
exp_type = EXP_TYPE_COMMAND

skills_type = /datum/skills/fo
Expand Down

0 comments on commit 393365c

Please sign in to comment.