Eric Foster 6 年之前
父節點
當前提交
0710a7eedc
共有 1 個檔案被更改,包括 4 行新增3 行删除
  1. 4
    3
      Inventory.java

+ 4
- 3
Inventory.java 查看文件

@@ -31,10 +31,11 @@ public class Inventory {
31 31
     }
32 32
 
33 33
     public void updateQualityForAgedItems(Item item){
34
-        if (item.getQuality() < 50) {
34
+        if (item.getName().equals("Aged Brie") && item.getQuality() < 50) {
35
+            increaseQualityBy1(item);
36
+        } else if (item.getName().equals("Backstage passes to a TAFKAL80ETC concert") &&
37
+        item.getQuality() < 50){
35 38
             increaseQualityBy1(item);
36
-        }
37
-        if (item.getName().equals("Backstage passes to a TAFKAL80ETC concert")){
38 39
             if (item.getSellIn() < 11 && item.getQuality() < 50) {
39 40
                 increaseQualityBy1(item);
40 41
             }