Skip to content

Commit

Permalink
УЭЭЭЭЭЭЭЭЭЭЭЭЭ БЛЯ
Browse files Browse the repository at this point in the history
  • Loading branch information
Discozavisim committed Feb 6, 2025
1 parent d17b01a commit 462b6b7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion code/modules/client/preferences.dm
Original file line number Diff line number Diff line change
Expand Up @@ -3311,7 +3311,7 @@ GLOBAL_LIST_EMPTY(preferences_datums)
var/datum/vampireclane/CLN = new clane.type()
character.clane = CLN
character.clane.current_accessory = clane_accessory
character.maxbloodpool = 10 + ((13 - generation) * 3)
character.maxbloodpool = get_gen_bloodpool(generation-generation_bonus)
character.bloodpool = rand(2, character.maxbloodpool)
character.generation = generation-generation_bonus
character.max_yin_chi = character.maxbloodpool
Expand Down
4 changes: 2 additions & 2 deletions code/modules/vtmb/kindred_species.dm
Original file line number Diff line number Diff line change
Expand Up @@ -273,11 +273,11 @@
disciplines_to_give += H.client.prefs.discipline_types[i]
BLOODBONDED.create_disciplines(FALSE, disciplines_to_give)

BLOODBONDED.maxbloodpool = 10+((13-min(13, BLOODBONDED.generation))*3)
BLOODBONDED.maxbloodpool = get_gen_bloodpool(BLOODBONDED.generation)
BLOODBONDED.clane.enlightenment = H.clane.enlightenment
else
BLOODBONDED.maxbloodpool = 10+((13-min(13, BLOODBONDED.generation))*3)
BLOODBONDED.generation = 14
BLOODBONDED.maxbloodpool = get_gen_bloodpool(BLOODBONDED.generation)
BLOODBONDED.clane = new /datum/vampireclane/caitiff()

//Verify if they accepted to save being a vampire
Expand Down

0 comments on commit 462b6b7

Please sign in to comment.