Compare commits

...

12 Commits

Author SHA1 Message Date
Matthew Wagner
47bc988b39
Merge pull request #14 from LotJ/nield/galmap-final-fix
Add special starsystems query for mapper
2024-01-20 21:57:41 -10:00
Ian Alden
85e00ea775
Update readme 2024-01-21 00:17:27 -07:00
Ian Alden
1dcf4f0de9
Add special starsystems query for mapper 2024-01-21 00:13:23 -07:00
Matthew Wagner
e779f9940a
Merge pull request #13 from LotJ/nield/osay-fix
Fix osay in chat window
2024-01-20 17:11:05 -10:00
Ian Alden
8ee32a20b3
Fix osay in chat window 2024-01-20 19:40:16 -07:00
Matthew Wagner
0d1e5f7695
Merge pull request #12 from LotJ/nield/galaxy-map-fix-2
Fix galaxy map for imms
2024-01-20 11:23:25 -10:00
Ian Alden
56aa040c9b
Fix galaxy map for imms 2024-01-20 14:11:55 -07:00
Jonathan Gottfried
2f540f9127
Merge pull request #10 from LotJ/nield/fix-galmap
Fix trigger for galaxy map
2024-01-20 12:49:20 -05:00
Ian Alden
2a53d2fbe1
One more fix 2024-01-20 10:42:08 -07:00
Jonathan Gottfried
e092dbf204
Merge pull request #9 from LotJ/nield/fix-galmap
Nield/fix galmap
2024-01-20 12:34:29 -05:00
Ian Alden
5847f557ad
Fix terminating chars 2024-01-20 10:27:36 -07:00
Ian Alden
2b3850ef98
Fix the galaxy map regex 2024-01-20 10:20:31 -07:00
5 changed files with 8 additions and 8 deletions

View File

@ -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. 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.
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 docker run --rm -it -u $(id -u):$(id -g) -v $PWD:/$PWD -w /$PWD demonnic/muddler:0.1
``` ```
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
View File

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

View File

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

View File

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

View File

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