降低perk读取警告等级
This commit is contained in:
parent
1641592eef
commit
a55f599529
1 changed files with 2 additions and 2 deletions
|
@ -483,14 +483,14 @@ public class GunData {
|
||||||
if (index != -1) {
|
if (index != -1) {
|
||||||
availablePerks.remove(perkValues.get(index));
|
availablePerks.remove(perkValues.get(index));
|
||||||
} else {
|
} else {
|
||||||
Mod.LOGGER.warn("Perk {} not found", n);
|
Mod.LOGGER.info("Perk {} not found", n);
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
var index = perkKeys.indexOf(name);
|
var index = perkKeys.indexOf(name);
|
||||||
if (index != -1) {
|
if (index != -1) {
|
||||||
availablePerks.add(perkValues.get(index));
|
availablePerks.add(perkValues.get(index));
|
||||||
} else {
|
} else {
|
||||||
Mod.LOGGER.warn("Perk {} not found", name);
|
Mod.LOGGER.info("Perk {} not found", name);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue