Skip to content

Commit

Permalink
Update kindred_species.dm
Browse files Browse the repository at this point in the history
  • Loading branch information
Discozavisim committed Feb 6, 2025
1 parent 208389c commit d17b01a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions code/modules/vtmb/kindred_species.dm
Original file line number Diff line number Diff line change
Expand Up @@ -559,7 +559,7 @@
/mob/living/carbon/human/verb/teach_discipline(mob/living/carbon/human/student in (range(1, src) - src))
set name = "Teach Discipline"
set category = "IC"
set desc ="Teach a Discipline to a Kindred who has recently drank your blood. Costs 100 experience points."
set desc ="Teach a Discipline to a Kindred who has recently drank your blood. Costs 50 experience points."

var/mob/living/carbon/human/teacher = src
var/datum/preferences/teacher_prefs = teacher.client.prefs
Expand All @@ -576,8 +576,8 @@
if (student.stat >= SOFT_CRIT)
to_chat(teacher, "<span class='warning'>Your student needs to be conscious!</span>")
return
if (teacher_prefs.true_experience < 100)
to_chat(teacher, "<span class='warning'>You don't have enough experience (100) to teach them this Discipline!</span>")
if (teacher_prefs.true_experience < 50)
to_chat(teacher, "<span class='warning'>You don't have enough experience (50) to teach them this Discipline!</span>")
return
//checks that the teacher has blood bonded the student, this is something that needs to be reworked when blood bonds are made better
if (student.mind.enslaved_to != teacher)
Expand Down Expand Up @@ -631,7 +631,7 @@

visible_message("<span class='notice'>[teacher] begins mentoring [student] in [giving_discipline].</span>")
if (do_after(teacher, 30 SECONDS, student))
teacher_prefs.true_experience -= 100
teacher_prefs.true_experience -= 50

student_prefs.discipline_types += teaching_discipline
student_prefs.discipline_levels += 0
Expand Down

0 comments on commit d17b01a

Please sign in to comment.