Feature to_thrall(skill) please

ckb

Minion
Staff member
It sure would be awesome to have allow for a to_thrall($skill[sk]) for all the Pastamancer bind thrall skills.

Currently: Function 'to_thrall( skill )' undefined.
 
This works!

Code:
thrall to_thrall(skill sk) {
	foreach t in $thralls[]
		if(t.skill == sk) return t;
	return $thrall[none];
}
 
Thanks Bale. That is better than the hack I threw together. I can use that for now.
 
Back
Top