Compare commits
12 Commits
72a843919b
...
47bc988b39
Author | SHA1 | Date | |
---|---|---|---|
|
47bc988b39 | ||
|
85e00ea775 | ||
|
1dcf4f0de9 | ||
|
e779f9940a | ||
|
8ee32a20b3 | ||
|
0d1e5f7695 | ||
|
56aa040c9b | ||
|
2f540f9127 | ||
|
2a53d2fbe1 | ||
|
e092dbf204 | ||
|
5847f557ad | ||
|
2b3850ef98 |
@ -55,7 +55,7 @@ After creating a Mudlet profile to connect to LOTJ, do the following to add the
|
||||
|
||||
## 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.
|
||||
|
||||
@ -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:
|
||||
|
||||
```
|
||||
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.
|
||||
|
@ -1,5 +1,5 @@
|
||||
lotj.galaxyMap.resetData()
|
||||
|
||||
enableTrigger("galaxy-map-refresh")
|
||||
send("starsystems", false)
|
||||
send("starsystems map", false)
|
||||
send("planets", false)
|
||||
|
@ -19,11 +19,11 @@
|
||||
"type": "regex"
|
||||
},
|
||||
{
|
||||
"pattern": "^\\(OOC\\) You say '.*'$",
|
||||
"pattern": "^\\(OSAY\\) You say '.*'$",
|
||||
"type": "regex"
|
||||
},
|
||||
{
|
||||
"pattern": "^\\(OOC\\) .* says '.*'$",
|
||||
"pattern": "^\\(OSAY\\) .* says '.*'$",
|
||||
"type": "regex"
|
||||
},
|
||||
{
|
||||
|
@ -172,7 +172,7 @@
|
||||
"fireLength": 1,
|
||||
"patterns": [
|
||||
{
|
||||
"pattern": "Listing publicly known starsystems:",
|
||||
"pattern": "Listing known starsystems:",
|
||||
"type": "substring"
|
||||
}
|
||||
],
|
||||
@ -181,7 +181,7 @@
|
||||
"name": "system-line",
|
||||
"patterns": [
|
||||
{
|
||||
"pattern": "^(.*) \\( ([0-9-]+), ([0-9-]+) \\)$",
|
||||
"pattern": "^(.*)\\s+\\(\\s*([0-9-]+), ([0-9-]+)\\s*\\)$",
|
||||
"type": "regex"
|
||||
}
|
||||
]
|
||||
|
Loading…
x
Reference in New Issue
Block a user