Replaced slingshot ID check with Type check.
This commit is contained in:
parent
368b25b541
commit
8660742391
|
@ -104,9 +104,10 @@ namespace StardewModdingAPI.Mods.ConsoleCommands.Framework
|
|||
// weapons
|
||||
if (ShouldGet(ItemType.Weapon))
|
||||
{
|
||||
foreach (int id in this.TryLoad<int, string>("Data\\weapons").Keys)
|
||||
var weaponsData = this.TryLoad<int, string>("Data\\weapons");
|
||||
foreach (int id in weaponsData.Keys)
|
||||
{
|
||||
yield return this.TryCreate(ItemType.Weapon, id, p => p.ID is >= 32 and <= 34
|
||||
yield return this.TryCreate(ItemType.Weapon, id, p => weaponsData[p.ID].Split('/')[8] == "4"
|
||||
? new Slingshot(p.ID)
|
||||
: new MeleeWeapon(p.ID)
|
||||
);
|
||||
|
|
Loading…
Reference in New Issue