Fix crafted armor powder application
it only applies once... dummy
This commit is contained in:
parent
616f64ab68
commit
8398358320
1 changed files with 4 additions and 3 deletions
|
@ -5,9 +5,10 @@
|
|||
*/
|
||||
function applyArmorPowders(expandedItem, powders) {
|
||||
applyArmorPowdersOnce(expandedItem, powders);
|
||||
if (expandedItem.get("crafted")) {
|
||||
applyArmorPowdersOnce(expandedItem, powders);
|
||||
}
|
||||
// NOTE: armor powder only applies once!
|
||||
//if (expandedItem.get("crafted")) {
|
||||
// applyArmorPowdersOnce(expandedItem, powders);
|
||||
//}
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in a new issue