Marshall
Initiate
Hello,
I'm trying to make gold weightless.
I have changed this:
to this:
I'm trying to make gold weightless.
I have changed this:
Code:
public override double DefaultWeight
{
get
{
return (Core.ML ? (0.02 / 3) : 0.02); }
to this:
Code:
public override double DefaultWeight
{
get
{
return (Core.ML ? (0.00 / 0) : 0.00);
}
}[code]
The issue is that I'm no longer adding weight, according to character status, but my character still is unable to move and stamina drops to 0 when I try.
Any other ideas?