Vars .outfit and .plasmaman_outfit on /datum/job are typed to datum/outfit and datum/outfit/plasmaman respectively (#92289)

## About The Pull Request
I noticed that these two variables defined on the job datum are plain
root variables rather than being typed; and so, I modified them to be
typed to what they should otherwise always be set to.

## Why It's Good For The Game
Implements something approaching slightly more type safety and inference
for these vars.

## Changelog
🆑 Bisar
code: The .outfit and .plasmaman_outfit variables on the job datum are
now defined to their expected types.
/🆑
This commit is contained in:
Joshua Kidder
2025-07-25 20:16:18 -06:00
committed by GitHub
parent f55f9bfb78
commit 330144b2b5
+2 -2
View File
@@ -44,10 +44,10 @@
/// If you have the use_age_restriction_for_jobs config option enabled and the database set up, this option will add a requirement for players to be at least minimal_player_age days old. (meaning they first signed in at least that many days before.)
var/minimal_player_age = 0
var/outfit = null
var/datum/outfit/outfit = null
/// The job's outfit that will be assigned for plasmamen.
var/plasmaman_outfit = null
var/datum/outfit/plasmaman/plasmaman_outfit = null
/// Minutes of experience-time required to play in this job. The type is determined by [exp_required_type] and [exp_required_type_department] depending on configs.
var/exp_requirements = 0