9 lines
265 B
Plaintext
9 lines
265 B
Plaintext
ReplaceEquipItemCell = class("ReplaceEquipItemCell", BaseItemCell)
|
|
|
|
function ReplaceEquipItemCell:SetData(data)
|
|
ReplaceEquipItemCell.super.SetData(self, data);
|
|
|
|
if(not self.invalid.activeSelf and data.id == "LackItem")then
|
|
self.invalid:SetActive(true);
|
|
end
|
|
end |