Skip to content

Commit 79d6675

Browse files
committed
closes #199 Add credits/license doc and credits command
1 parent 1f0e5dc commit 79d6675

4 files changed

Lines changed: 43 additions & 0 deletions

File tree

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
'use strict';
2+
3+
module.exports = srcPath => {
4+
const Broadcast = require(srcPath + 'Broadcast');
5+
6+
return {
7+
command: state => (args, player) => {
8+
state.CommandManager.get('help').execute('credits', player);
9+
}
10+
};
11+
};
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
---
2+
body: |
3+
This MUD was built using the Ranvier codebase. You can find out more about Ranvier and its developers at http://ranviermud.com
4+
5+
Creator
6+
---
7+
Shawn Biddle (github.com/shawncplus)
8+
9+
Developers
10+
---
11+
Sean O'Donohue (github.com/seanohue)
12+
Josh Williams (github.com/jackjwilliams)

docs/license.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
Ranvier is MIT licensed, you can see the full text of our license in the LICENSE.txt file in the root of the repo.
2+
3+
## Credits
4+
5+
Unlike the Diku license Ranvier has no license requirement that you include credits on the login screen. However,
6+
Ranvier is a labor of love and a lot of effort. As such, it would be much appreciated if you included the credits listed
7+
below in your game in a command, helpfile, or if you really want right on the login screen.
8+
9+
If you've made contributions to Ranvier and wish to have your name added to this list feel free to send a pull request
10+
on github.
11+
12+
### Creator
13+
14+
Shawn Biddle (github.com/shawncplus)
15+
16+
### Developers
17+
18+
* Sean O'Donohue (github.com/seanohue)
19+
* Josh Williams (github.com/jackjwilliams)

mkdocs.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,3 +41,4 @@ pages:
4141
- Contributing: contributing.md
4242
- Web API: api.md
4343
- Common Issues: common_issues.md
44+
- License/Credits: license.md

0 commit comments

Comments
 (0)