Assignment of operators

This commit is contained in:
davidraj 2022-10-10 16:53:06 +01:00
parent 319ef5155f
commit ae84163e48

View File

@ -10,19 +10,17 @@ class ItemProcessor
def update_item_quality def update_item_quality
if (item.name != 'Aged Brie') && (item.name != 'Backstage passes to a TAFKAL80ETC concert') if (item.name != 'Aged Brie') && (item.name != 'Backstage passes to a TAFKAL80ETC concert')
if item.quality > 0 if item.quality > 0
if item.name != 'Sulfuras, Hand of Ragnaros' item.quality -= 1 if item.name != 'Sulfuras, Hand of Ragnaros'
item.quality = item.quality - 1
end
end end
else else
if item.quality < 50 if item.quality < 50
item.quality = item.quality + 1 item.quality += 1
if item.name == 'Backstage passes to a TAFKAL80ETC concert' if item.name == 'Backstage passes to a TAFKAL80ETC concert'
if item.sell_in < 11 if item.sell_in < 11
item.quality = item.quality + 1 if item.quality < 50 item.quality += 1 if item.quality < 50
end end
if item.sell_in < 6 if item.sell_in < 6
item.quality = item.quality + 1 if item.quality < 50 item.quality += 1 if item.quality < 50
end end
end end
end end
@ -32,15 +30,13 @@ class ItemProcessor
if item.name != 'Aged Brie' if item.name != 'Aged Brie'
if item.name != 'Backstage passes to a TAFKAL80ETC concert' if item.name != 'Backstage passes to a TAFKAL80ETC concert'
if item.quality > 0 if item.quality > 0
if item.name != 'Sulfuras, Hand of Ragnaros' item.quality -= 1 if item.name != 'Sulfuras, Hand of Ragnaros'
item.quality = item.quality - 1
end
end end
else else
item.quality = item.quality - item.quality item.quality = item.quality - item.quality
end end
else else
item.quality = item.quality + 1 if item.quality < 50 item.quality += 1 if item.quality < 50
end end
end end
end end