Skip to content

Commit

Permalink
version 2.1.30
Browse files Browse the repository at this point in the history
  • Loading branch information
p4535992 committed Jul 7, 2022
1 parent 57ce644 commit 190088c
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 9 deletions.
4 changes: 4 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# CHANGELOG

### 2.1.30

- Change step setting distance from 5 to 1

### 2.1.28-29

- Remove module settings
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"name": "foundryvtt-arms-reach",
"title": "FoundryVTT Arms Reach",
"description": "Allows the GM to limit the distance that a player can interacted with a placeable object like door, journal, stairway, token, ecc..",
"version": "2.1.29",
"version": "2.1.30",
"scripts": {
"package": "gulp package",
"build": "gulp build && gulp link",
Expand Down
8 changes: 4 additions & 4 deletions src/module.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "foundryvtt-arms-reach",
"title": "FoundryVTT Arms Reach",
"description": "Allows the GM to limit the distance that a player can interacted with a placeable object like door, journal, stairway, token, ecc..",
"version": "2.1.29",
"version": "2.1.30",
"author": "Psyny, p4535992",
"type": "module",
"socket": true,
Expand Down Expand Up @@ -46,9 +46,9 @@
"manifestPlusVersion": "1.2.1",
"url": "https://github.com/p4535992/foundryvtt-arms-reach",
"manifest": "https://github.com/p4535992/foundryvtt-arms-reach/releases/latest/download/module.json",
"download": "https://github.com/p4535992/foundryvtt-arms-reach/releases/download/v2.1.29/module.zip",
"readme": "https://github.com/p4535992/foundryvtt-arms-reach/blob/v2.1.29/README.md",
"changelog": "https://github.com/p4535992/foundryvtt-arms-reach/blob/v2.1.29/changelog.md",
"download": "https://github.com/p4535992/foundryvtt-arms-reach/releases/download/v2.1.30/module.zip",
"readme": "https://github.com/p4535992/foundryvtt-arms-reach/blob/v2.1.30/README.md",
"changelog": "https://github.com/p4535992/foundryvtt-arms-reach/blob/v2.1.30/changelog.md",
"bugs": "https://github.com/p4535992/foundryvtt-arms-reach/issues",
"allowBugReporter": true,
"dependencies": [
Expand Down
8 changes: 4 additions & 4 deletions src/module/settings.ts
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ export const registerSettings = function () {
default: 5,
type: Number,
//@ts-ignore
range: { min: 0, max: 20, step: 5 },
range: { min: 0, max: 20, step: 1 },
});

game.settings.register(CONSTANTS.MODULE_NAME, 'globalInteractionDistanceForGM', {
Expand Down Expand Up @@ -146,7 +146,7 @@ export const registerSettings = function () {
default: 0, // 5 before
type: Number,
//@ts-ignore
range: { min: 0, max: 50, step: 5 },
range: { min: 0, max: 50, step: 1 },
});

// DEPRECATED
Expand Down Expand Up @@ -653,7 +653,7 @@ function otherSettings(apply = false) {
default: 5,
type: Number,
//@ts-ignore
range: { min: 0, max: 20, step: 5 },
range: { min: 0, max: 20, step: 1 },
},

globalInteractionDistanceForGM: {
Expand Down Expand Up @@ -742,7 +742,7 @@ function otherSettings(apply = false) {
default: 0, // 5 before
type: Number,
//@ts-ignore
range: { min: 0, max: 50, step: 5 },
range: { min: 0, max: 50, step: 1 },
},

// DEPRECATED
Expand Down

0 comments on commit 190088c

Please sign in to comment.