Browse Source

[changed] Willpower max will now not increase from forcing other if it is 200 or above.

bgkjdgbizgblzdgbr 1 year ago
parent
commit
9ce979a07e
1 changed files with 4 additions and 2 deletions
  1. 4 2
      locations/willpower.qsrc

+ 4 - 2
locations/willpower.qsrc

@@ -926,8 +926,10 @@ if $ARGS[0] = 'pay':
 	if will_cost < 1 and cheatWillpower = 0: will_cost = 1
 	pcs_willpwr -= will_cost
 	if $ARGS[1] = 'force':
-		will_counter += 1
-		if will_counter >= 2: will_counter = 0 & willpowermax += 1
+		if willpowermax < 200:
+			will_counter += 1
+			if will_counter >= 2: will_counter = 0 & willpowermax += 1
+		end
 		if will_enforced < 20: will_enforced += 1
 	end
 end