Fixing....
So here's 1.1.1
Changelog
- Fix Web Trap description (trapped -> pinned).
- Fix Stress Response damage reduction not stacking.
- Fix Venomous Mandible proc error.
- Fix bugged Cocoon chance.
Moderator: Moderator
Changelog
- Fix Web Trap description (trapped -> pinned).
- Fix Stress Response damage reduction not stacking.
- Fix Venomous Mandible proc error.
- Fix bugged Cocoon chance.

darkgod wrote:~ [ DarkGod whips rexorcorum with Suslik (& many others as well) ] ~
Changelog
- Weaver Evolution! Adds 2 Evolution for Weavers.
- New Evolution: Weaver's True Form
- Become a true proper arachnid.
- New Evolution: Orb Weaver Path
- Learn to throw thread balls loaded with many effects.
- Adds setting entries in gameplay options regarding Weavers (purely cosmetic).
(Having trouble uploading to Steam so that would have to wait, I guess)Changelog
- New Evolution: Sword Spider
- Enhance (?) your limbs by growing blades out of them.
- Put config entries into 1 file.
Finally tracked this down. You are not going to believe this.Zizzo wrote: ↑Wed Sep 27, 2023 3:14 am Odd bug to report: the online character sheet for my Weaver character (and indeed, every Weaver character sheet I've been able to find) is basically empty, reporting only "Unsupported charsheet, too old."
 In your Wild-gift/Weaver anatomy tree, you make a small modification to the Heavy Armour Training talent's info() method:
  In your Wild-gift/Weaver anatomy tree, you make a small modification to the Heavy Armour Training talent's info() method:
Code: Select all
local heavy = Talents.talents_def["T_ARMOUR_TRAINING"]
if heavy then
	local info = heavy.info
	heavy.info = function(self, t)
		local classrestriction = ""
		if self.descriptor and self.descriptor.subclass == "Weaver" then
			classrestriction = classrestriction.."\r\n(Note that weavers will be unable to perform many of their talents in massive armour.)"
		end
		return info(self, t)..classrestriction
	end
end
 I would never have predicted that.
  I would never have predicted that....I can't believe this
 
 Code: Select all
1.2.2
- Fix: improper escape character causing online character sheet bug
Code: Select all
1.2.3
- Fix: Sword Storm's talent cost alteration overriding all other cost alteration