Skip to content

Commit

Permalink
poopoopoop
Browse files Browse the repository at this point in the history
  • Loading branch information
Discozavisim committed Feb 6, 2025
1 parent 462b6b7 commit c1eb8be
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
7 changes: 4 additions & 3 deletions code/modules/vtmb/dharma.dm
Original file line number Diff line number Diff line change
Expand Up @@ -164,9 +164,10 @@
if(P)
P.dharma_level = dharma.level
if(dharma.level <= 0)
P.dharma_level = 1
P.save_preferences()
P.save_character()
// P.dharma_level = 1
// P.save_preferences()
// P.save_character()
reset_shit(kueijin)
kueijin.enter_frenzymod()
to_chat(kueijin, "<span class='userdanger'>You have lost control of the P'o within you, and it has taken your body. Stay closer to your Dharma next time.</span>")
kueijin.ghostize(FALSE)
Expand Down
2 changes: 1 addition & 1 deletion code/modules/vtmb/vampire_clane/ventrue.dm
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
to_chat(A, "<span class='warning'>You find yourself unable to speak!</span>")
return
var/list/mob/living/carbon/human/victims_list = list()
for (var/mob/living/carbon/human/adding_victim in oviewers(3, owner))
for (var/mob/living/carbon/human/adding_victim in oviewers(5, owner))
victims_list += adding_victim
if(!length(victims_list))
to_chat(owner, "<span class='warning'>There's no one to <b>DOMINATE</b> around...</span>")
Expand Down
1 change: 1 addition & 0 deletions code/modules/wod13/onyxcombat.dm
Original file line number Diff line number Diff line change
Expand Up @@ -839,6 +839,7 @@
if(!client || !hud_used)
return
maxbloodpool = get_gen_bloodpool(generation)-cursed_bloodpool
bloodpool = min(maxbloodpool, bloodpool)
if(hud_used.blood_icon)
var/emm = round((bloodpool/maxbloodpool)*10)
if(emm > 10)
Expand Down
1 change: 1 addition & 0 deletions code/modules/wod13/procs.dm
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,7 @@
if(!antifrenzy)
if(P.humanity < 1)
enter_frenzymod()
reset_shit(src)
to_chat(src, "<span class='userdanger'>You have lost control of the Beast within you, and it has taken your body. Be more humane next time.</span>")
ghostize(FALSE)
P.reason_of_death = "Lost control to the Beast ([time2text(world.timeofday, "YYYY-MM-DD hh:mm:ss")])."
Expand Down

0 comments on commit c1eb8be

Please sign in to comment.