Skip to content

Commit

Permalink
Fixes RPG titles alignment (#81077) (#4085)
Browse files Browse the repository at this point in the history
## About The Pull Request

Fixes tgstation/tgstation#81013 RPG titles
having incorrect alignment


![image](https://github.com/tgstation/tgstation/assets/83487515/3be96289-f74a-4463-9e68-69cc450110ed)

## Changelog

:cl: LT3
fix: Fixed alignment of RPG titles
/:cl:

Co-authored-by: lessthanthree <[email protected]>
  • Loading branch information
Absolucy and lessthnthree authored Nov 3, 2024
1 parent 2f49e32 commit a62faef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion code/modules/events/wizard/rpgtitles.dm
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ GLOBAL_DATUM(rpgtitle_controller, /datum/rpgtitle_controller)
//we must prepare for the mother of all strings
new_crewmember.maptext_height = max(new_crewmember.maptext_height, 32)
new_crewmember.maptext_width = max(new_crewmember.maptext_width, 112)
new_crewmember.maptext_x = -24 - new_crewmember.base_pixel_x
new_crewmember.maptext_x = -38 - new_crewmember.base_pixel_x
new_crewmember.maptext_y = -32

//list of lists involving strings related to a biotype flag, their position in the list equal to the position they were defined as bitflags.
Expand Down

0 comments on commit a62faef

Please sign in to comment.