Skip to content

Commit

Permalink
Merge pull request #344 from jopeek/343-keeps-updating-remains-at-ver…
Browse files Browse the repository at this point in the history
…sion-3510

🪛 fix link in manifest | #343
  • Loading branch information
DanielBoettner authored Jun 2, 2022
2 parents 624f678 + b62e110 commit 30392d9
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "fvtt-loot-sheet-npc-5e",
"version": "3.5.13",
"version": "3.5.14",
"description": "A javascript FoundryVTT module. Adding an additional NPC sheet for Loot/Containers/Merchant",
"main": "lootsheetnpc5e.js",
"scripts": {
Expand Down
4 changes: 2 additions & 2 deletions src/module.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "lootsheetnpc5e",
"title": "LootsheetNPC5e",
"description": "This module adds an additional NPC sheet. It can be used for loot containers such as chests or shopkeepers.",
"version": "3.5.13",
"version": "3.5.14",
"manifestPlusVersion": "1.2.0",
"minimumCoreVersion": "0.9.0",
"compatibleCoreVersion": "9.269",
Expand Down Expand Up @@ -81,5 +81,5 @@
"socket": true,
"url": "https://github.com/jopeek/fvtt-loot-sheet-npc-5e",
"manifest": "https://raw.githubusercontent.com/jopeek/fvtt-loot-sheet-npc-5e/master/src/module.json",
"download": "https://github.com/jopeek/fvtt-loot-sheet-npc-5e/releases/download/v3.5.10/lootsheetnpc5e.zip"
"download": "https://github.com/jopeek/fvtt-loot-sheet-npc-5e/releases/download/v3.5.14/lootsheetnpc5e.zip"
}
2 changes: 1 addition & 1 deletion src/modules/hooks/SocketListener.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ export class SocketListener {
let triggeringActor = game.actors.get(packet.triggerActorId),
action = packet.action || packet;

console.log(`${MODULE.ns} | {this.name} | data`, packet);
console.log(`${MODULE.ns} | handleRequest | data`, packet);

if (game.user.isGM && !triggeringActor) {
triggeringActor = {
Expand Down
4 changes: 4 additions & 0 deletions src/templates/partials/welcomeScreen/patchnotes.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@
<header>
<h1>Patchnotes</h1>
</header>
<h2>3.5.14</h2>
<ul>
<li>Fix the download link for latest version.</li>
</ul>
<h2>3.5.13</h2>
<ul style="list-style: none;">
<li>Fixed the saving of settings in the GM settings</li>
Expand Down

0 comments on commit 30392d9

Please sign in to comment.