Compare commits

..

No commits in common. "47bc988b39590faf091bf973d32fc8a103fd96fb" and "72a843919b6066bf0945202cb729e49ca7f10e1d" have entirely different histories.

5 changed files with 8 additions and 8 deletions
README.mdmfile
src
aliases/galaxy-map
triggers

@ -55,7 +55,7 @@ After creating a Mudlet profile to connect to LOTJ, do the following to add the
## Contributing ## Contributing
The source for this package is structured to use [muddler](https://github.com/demonnic/muddler) to package it into a Mudlet package. Using version 0.1 is necessary at this time due to some errant behavior by later Muddler versions. The source for this package is structured to use [muddler](https://github.com/demonnic/muddler) to package it into a Mudlet package.
You can, of course, just modify the triggers/aliases/scripts directly within Mudlet if you want to test local changes, but they'll be overwritten if you want to update to future versions of this package. You can, of course, just modify the triggers/aliases/scripts directly within Mudlet if you want to test local changes, but they'll be overwritten if you want to update to future versions of this package.
@ -64,7 +64,7 @@ To change the source for this package, modify the JSON files and associated Lua
If you have Docker set up, it can be easiest to run a command like this to regenerate the package, from the root of the repository: If you have Docker set up, it can be easiest to run a command like this to regenerate the package, from the root of the repository:
``` ```
docker run --rm -it -u $(id -u):$(id -g) -v $PWD:/$PWD -w /$PWD demonnic/muddler:0.1 docker run --rm -it -u $(id -u):$(id -g) -v $PWD:/$PWD -w /$PWD demonnic/muddler
``` ```
If that's a pain, just make a pull request and someone else can generate the package with your changes to make sure they work. If that's a pain, just make a pull request and someone else can generate the package with your changes to make sure they work.

2
mfile

@ -1,4 +1,4 @@
{ {
"package": "lotj-ui", "package": "lotj-ui",
"version": "v2.3.3" "version": "v2.3.1"
} }

@ -1,5 +1,5 @@
lotj.galaxyMap.resetData() lotj.galaxyMap.resetData()
enableTrigger("galaxy-map-refresh") enableTrigger("galaxy-map-refresh")
send("starsystems map", false) send("starsystems", false)
send("planets", false) send("planets", false)

@ -19,11 +19,11 @@
"type": "regex" "type": "regex"
}, },
{ {
"pattern": "^\\(OSAY\\) You say '.*'$", "pattern": "^\\(OOC\\) You say '.*'$",
"type": "regex" "type": "regex"
}, },
{ {
"pattern": "^\\(OSAY\\) .* says '.*'$", "pattern": "^\\(OOC\\) .* says '.*'$",
"type": "regex" "type": "regex"
}, },
{ {

@ -172,7 +172,7 @@
"fireLength": 1, "fireLength": 1,
"patterns": [ "patterns": [
{ {
"pattern": "Listing known starsystems:", "pattern": "Listing publicly known starsystems:",
"type": "substring" "type": "substring"
} }
], ],
@ -181,7 +181,7 @@
"name": "system-line", "name": "system-line",
"patterns": [ "patterns": [
{ {
"pattern": "^(.*)\\s+\\(\\s*([0-9-]+), ([0-9-]+)\\s*\\)$", "pattern": "^(.*) \\( ([0-9-]+), ([0-9-]+) \\)$",
"type": "regex" "type": "regex"
} }
] ]