About Relentless Pursuit

Where bugs go to lie down and rest

Moderator: Moderator

Post Reply
Message
Author
omero
Higher
Posts: 60
Joined: Thu Feb 07, 2013 12:42 pm

About Relentless Pursuit

#1 Post 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

Post Reply