Skip to content

Commit

Permalink
багфикс часов
Browse files Browse the repository at this point in the history
  • Loading branch information
PhantornRU committed Jan 20, 2024
1 parent 15b358d commit 3578c87
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modular_ss220/ranks/code/accessory.dm
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@
for(var/exp_type in exp_types)
if(!(exp_type in play_records))
continue
exp_sum += text2num(play_records[exp_type]) - (job_req ? job_req.exp_map[exp_type] : 0) / 60 // Конвертируем из минус в часы
exp_sum += (text2num(play_records[exp_type]) - (job_req ? job_req.exp_map[exp_type] : 0)) / 60 // Конвертируем из минус в часы

var/choosen_rank
for(var/rank in rank_exp_order_dict)
Expand Down

0 comments on commit 3578c87

Please sign in to comment.