From 52b749bf31c9af7b7801abebef08b0c913ace4c8 Mon Sep 17 00:00:00 2001
From: Discozavisim <107996502+Discozavisim@users.noreply.github.com>
Date: Thu, 6 Feb 2025 13:55:41 +0100
Subject: [PATCH] sdahdshs
---
code/modules/client/preferences.dm | 2 +-
code/modules/client/preferences_savefile.dm | 2 +-
code/modules/vtmb/kindred_species.dm | 8 ++++----
3 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/code/modules/client/preferences.dm b/code/modules/client/preferences.dm
index 44e72283c2..d495573066 100644
--- a/code/modules/client/preferences.dm
+++ b/code/modules/client/preferences.dm
@@ -105,7 +105,7 @@ GLOBAL_LIST_EMPTY(preferences_datums)
var/list/ignoring = list()
- var/clientfps = -1
+ var/clientfps = 60
var/parallax
diff --git a/code/modules/client/preferences_savefile.dm b/code/modules/client/preferences_savefile.dm
index 25a3461624..335a211311 100644
--- a/code/modules/client/preferences_savefile.dm
+++ b/code/modules/client/preferences_savefile.dm
@@ -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
diff --git a/code/modules/vtmb/kindred_species.dm b/code/modules/vtmb/kindred_species.dm
index afbc12a1ec..cf15d34863 100644
--- a/code/modules/vtmb/kindred_species.dm
+++ b/code/modules/vtmb/kindred_species.dm
@@ -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
@@ -576,8 +576,8 @@
if (student.stat >= SOFT_CRIT)
to_chat(teacher, "Your student needs to be conscious!")
return
- if (teacher_prefs.true_experience < 10)
- to_chat(teacher, "You don't have enough experience to teach them this Discipline!")
+ if (teacher_prefs.true_experience < 500)
+ to_chat(teacher, "You don't have enough experience (500) to teach them this Discipline!")
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)
@@ -631,7 +631,7 @@
visible_message("[teacher] begins mentoring [student] in [giving_discipline].")
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