Procházet zdrojové kódy

Removed inventory changes that belongs to another issue

tags/v0.1.2^2
Big Bad Waffle před 7 roky
rodič
revize
30614c36fc
1 změnil soubory, kde provedl 6 přidání a 8 odebrání
  1. +6
    -8
      src/client/ui/templates/inventory/inventory.js

+ 6
- 8
src/client/ui/templates/inventory/inventory.js Zobrazit soubor

@@ -282,16 +282,14 @@ define([
}
}

if (!item.eq) {
if (!item.quest) {
if ((window.player.stash.active) && (!item.noSalvage))
config.push(menuItems.stash);
if ((!item.quest) && (!item.eq)) {
if ((window.player.stash.active) && (!item.noSalvage))
config.push(menuItems.stash);

config.push(menuItems.drop);
config.push(menuItems.drop);

if ((!item.material) && (!item.noSalvage))
config.push(menuItems.salvage);
}
if ((!item.material) && (!item.noSalvage))
config.push(menuItems.salvage);

config.push(menuItems.destroy);
}


Načítá se…
Zrušit
Uložit