Skip to content

Commit

Permalink
refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
Legendaxe committed Apr 5, 2024
1 parent 4a79c21 commit 7a82ffe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modular_ss220/donor/code/client_procs.dm
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
if(BIG_WORKER_TIER)
C.donator_level = BIG_WORKER_TTS_LEVEL > donator_level ? C.donator_level : donator_level
else
C.donator_level = C.donator_level == DONATOR_LEVEL_MAX ? DONATOR_LEVEL_MAX : donator_level
C.donator_level = max(MAX_DONATOR_LEVEL, donator_level)

Check failure on line 55 in modular_ss220/donor/code/client_procs.dm

View workflow job for this annotation

GitHub Actions / Run Linters

undefined var: "MAX_DONATOR_LEVEL"

C.donor_loadout_points()
C.donor_character_slots()
Expand Down

0 comments on commit 7a82ffe

Please sign in to comment.