[0.69.420-PUBLIC#1732] Savicite piercings possible attribute mix up

one_two

Well-Known Member
Jan 20, 2022
457
130
According to the wiki summary, Crude Savicite piercings should increase lust gain by 5%, while regular Savicite piercings should increase minimum lust level by 2. However, currently the Crude Savicite piercings receive both of these effects, while regular Savicite piercings have none:

example, comparison of crude and regular hoop piercing:

Code:
export class CrudeSaviciteHoopPiercing extends ItemSlotClass
{
//...
    constructor()
    {
//...
        this.type = GLOBAL.PIERCING;
       
        this.lustGain = 0.05;
        this.lustMin = 2;

        this.shortName = "CruSavHoop";
        this.longName = "Crude Savicite Hoop";

Code:
export class SaviciteHoopPiercing extends ItemSlotClass
{
// ...
    constructor()
    {
//...
        this.type = GLOBAL.PIERCING;
       
        this.shortName = "SavHoop";
        this.longName = "Savicite Hoop";
// ...
 

DrunkZombie

Well-Known Member
Moderator
Apr 12, 2018
1,565
878
Minnesota, USA
I fixed all the savicite and crude savicite piercings. It looks like when they got converted the crude got all the values from the regular.