Skip to content

Commit

Permalink
Don't delete creature sizes!
Browse files Browse the repository at this point in the history
  • Loading branch information
juanferrer committed Jan 6, 2024
1 parent ba20998 commit 1f46bf1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/module/actor/actor.js
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ export class DemonlordActor extends Actor {
// Adjust size here
const originalSize = this._source.system.characteristics.size
let modifiedSize = 0
let newSize = "1"
let newSize = originalSize
if (originalSize.includes("/")) {
const [numerator, denominator] = originalSize.split("/")
modifiedSize = parseInt(numerator) / parseInt(denominator)
Expand Down

0 comments on commit 1f46bf1

Please sign in to comment.