Page 1 of 1

About Relentless Pursuit

Posted: Sun Apr 07, 2013 1:03 pm
by omero
Not a bug, but wouldn't know where to discuss this.

Code: Select all

print("About to reduce duration of... %s. Will use %s. Reducing duration by %d", e.desc, save_for_effects[e.type])
Resulting in:

Code: Select all

About to reduce duration of... %s. Will use %s. Reducing duration by %d	Burning	combatPhysicalResist
About to reduce duration of... %s. Will use %s. Reducing duration by %d	Blinded	combatPhysicalResist
About to reduce duration of... %s. Will use %s. Reducing duration by %d	Off-balance	combatPhysicalResist
Change it to something like:

Code: Select all

print("[Relentless Pursuit] about to reduce duration of ", e.desc, " using ", save_for_effects[e.type], " :: Duration decreased by ", decrease)
Resulting in:

Code: Select all

[Relentless Pursuit] about to reduce duration of 	Off-balance	 using 	combatPhysicalResist	 :: Duration decreased by 	4
[Relentless Pursuit] about to reduce duration of 	Dazed	 using 	combatPhysicalResist	 :: Duration decreased by 	4