Browse Source

[fixed] Change in how the variable for university weeks was set had the unintended effect to make the nerpoint go down fast in school holidays.

bgkjdgbizgblzdgbr 1 year ago
parent
commit
50bffb4758
1 changed files with 2 additions and 2 deletions
  1. 2 2
      locations/traits.qsrc

+ 2 - 2
locations/traits.qsrc

@@ -217,8 +217,8 @@ if $ARGS[0] = 'overnight':
 			traits['nerd_points'] -= iif(traits['nerd_status'] > 0, 5, 10)
 		end
 		traits['nerd_lessons'] = 0
-	elseif university['semester_week'] > 0 and week = 5:
-		!!This is for being a university student, with only 9 weekly classes and no homework the gain is a little more agressive form classes.
+	elseif university['semester_week'] > 0 and university['student'] = 1 and week = 5:
+		!!This is for being a university student, with only 9 weekly classes and no homework the gain is a little more aggressive from classes.
 		if traits['nerd_lessons'] > 7:
 			traits['nerd_points'] += (traits['nerd_lessons']-7)*5
 		elseif traits['nerd_lessons'] < 4: