Skip to content

Commit

Permalink
renamed
Browse files Browse the repository at this point in the history
  • Loading branch information
MaxDorob committed Nov 30, 2024
1 parent b8d4434 commit db2f1ac
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@ public class VerbPropertiesCE : VerbProperties
public bool ejectsCasings = true;
public bool ignorePartialLoSBlocker = false;
public bool interruptibleBurst = true;
public List<ThingDef> cantShotWith = new List<ThingDef>();
public List<ThingDef> disallowedProjectileDefs = new List<ThingDef>();
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,7 @@ public override bool Available()
}
}

return Projectile != null && !VerbPropsCE.cantShotWith.Contains(Projectile);
return Projectile != null && !VerbPropsCE.disallowedProjectileDefs.Contains(Projectile);
}

/// <summary>
Expand Down

0 comments on commit db2f1ac

Please sign in to comment.