#33 Wrong wealth calculation #34

Merged
Byroks merged 3 commits from #33-wrong-wealth-calculation into develop 2024-01-16 08:29:16 +01:00
2 changed files with 11 additions and 10 deletions
Showing only changes of commit f61e088238 - Show all commits

View File

@ -1,13 +1,15 @@
name: Adds all issues to project board
name: Move new issues into To Do
on:
issues:
types: [opened]
jobs:
add-to-project:
name: Add issue to project
createCard:
runs-on: ubuntu-latest
steps:
- uses: actions/add-to-project@v0.5.0
with:
project-url: https://git.byroks.de/MidgardVTT-Entwicklung/-/projects/3
github-token: ${{ secrets.GH_TOKEN }}
labeled: bug, enhancement
label-operator: OR
- name: Close Issue
run: >
curl -X PATCH -H "Content-Type: application/xml"
-H "Authorization: token ${{ secrets.GITEA_TOKEN }}
-d '{ "state": "To Do" }'
"${{ gitea.event.issue.url }}"

View File

@ -242,7 +242,6 @@ export class M5Character extends Actor {
calc: item.system.calc,
equipped: item.system?.equipped,
weight: item.system.weight || 0,
containerId: item.system.containerId || "",
value: item.system.value || 0,
currency: item.system.currency || "",
quantity: item.system.quantity || 0,