Skip to content

Commit

Permalink
sdahdshs
Browse files Browse the repository at this point in the history
  • Loading branch information
Discozavisim committed Feb 6, 2025
1 parent e0cfcf1 commit 52b749b
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion code/modules/client/preferences.dm
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ GLOBAL_LIST_EMPTY(preferences_datums)

var/list/ignoring = list()

var/clientfps = -1
var/clientfps = 60

var/parallax

Expand Down
2 changes: 1 addition & 1 deletion code/modules/client/preferences_savefile.dm
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ SAVEFILE UPDATING/VERSIONING - 'Simplified', or rather, more coder-friendly ~Car

if(current_version < 37)
if(clientfps == 0)
clientfps = -1
clientfps = 60

if (current_version < 38)
var/found_block_movement = FALSE
Expand Down
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 10 experience points."
set desc ="Teach a Discipline to a Kindred who has recently drank your blood. Costs 500 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 < 10)
to_chat(teacher, "<span class='warning'>You don't have enough experience to teach them this Discipline!</span>")
if (teacher_prefs.true_experience < 500)
to_chat(teacher, "<span class='warning'>You don't have enough experience (500) 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 -= 10
teacher_prefs.true_experience -= 500

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

0 comments on commit 52b749b

Please sign in to comment.