Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: foundryvtt/pf2e
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 28f901de2cfd140e2887cf6385170db83fbb1efc
Choose a base ref
..
head repository: foundryvtt/pf2e
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 33499228d57f759fdeae092f9a380658f42ed177
Choose a head ref
Showing with 2 additions and 2 deletions.
  1. +1 −1 src/module/canvas/token/aura/renderer.ts
  2. +1 −1 src/module/canvas/token/aura/util.ts
2 changes: 1 addition & 1 deletion src/module/canvas/token/aura/renderer.ts
Original file line number Diff line number Diff line change
@@ -33,7 +33,7 @@ class AuraRenderer extends PIXI.Graphics implements TokenAuraData {
textureContainer: PIXI.Graphics | null = null;

/** An optional set of predefined polygons used to test square inclusion */
polygons: ClockwiseSweepPolygon[] | null = null;
polygons?: ClockwiseSweepPolygon[];

/** The wall restriction type used for this aura */
restrictionType: Exclude<WallRestrictionType, "light">;
2 changes: 1 addition & 1 deletion src/module/canvas/token/aura/util.ts
Original file line number Diff line number Diff line change
@@ -97,7 +97,7 @@ function createTestPolygons(data: GetAreaSquaresParams): ClockwiseSweepPolygon[]

interface GetAreaSquaresParams {
bounds: PIXI.Rectangle;
polygons?: ClockwiseSweepPolygon[] | null;
polygons?: ClockwiseSweepPolygon[];
restrictionType?: AuraRenderer["restrictionType"];
radius: number;
token: TokenPF2e | TokenDocumentPF2e;