Fix Purification Powder not working on ebonsand

This commit is contained in:
Deathmax 2011-12-17 09:45:04 +08:00
parent 08295343d7
commit 7a1ea99ea8
2 changed files with 7 additions and 2 deletions

View file

@ -389,6 +389,11 @@ namespace TShockAPI
tile.type = 112;
changed = true;
}
else if (tile.type == 112 && newtile.Type == 53)
{
tile.type = 53;
changed = true;
}
}
}