Skip to content

Commit

Permalink
made placePosition used by #shadow not be the player's head
Browse files Browse the repository at this point in the history
  • Loading branch information
SIsilicon committed Nov 5, 2024
1 parent cd77f1c commit 1d569d3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/server/modules/mask.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ export class Mask implements CustomArgType {

withContext(session: PlayerSession) {
const mask = this.clone();
mask.context.placePosition = Vector.from(session.getPlayer().getHeadLocation()); //session.getPlacementPosition().add(0.5);
mask.context.placePosition = session.getPlacementPosition().add(0.5);
return mask;
}

Expand Down

0 comments on commit 1d569d3

Please sign in to comment.