Skip to content

Commit a066300

Browse files
committed
fix mud clients blueprint
1 parent 2fe570f commit a066300

File tree

3 files changed

+3
-5
lines changed

3 files changed

+3
-5
lines changed

__init__.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@
1515
from challenges import challenges_bp
1616
from help import help_bp
1717
from leaders import leaders_bp, leaderboard_bp
18-
from help.mud_clients import mud_clients_bp
1918
from patches import patches_bp
2019
from portal import portal_bp
2120
from sysinfo import sysinfo_bp
@@ -40,7 +39,6 @@
4039
app.register_blueprint(leaders_bp)
4140
app.register_blueprint(leaderboard_bp)
4241
app.register_blueprint(login_bp)
43-
app.register_blueprint(mud_clients_bp)
4442
app.register_blueprint(patches_bp)
4543
app.register_blueprint(portal_bp)
4644
app.register_blueprint(sysinfo_bp)
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
{% extends "base/layout.html.j2" %}
33
{% block meta_title %}MUD Clients{% endblock meta_title %}
44
{% block meta_description %}MUD Clients that are freely available to use and try to play Ishar MUD{% endblock meta_description %}
5-
{% block meta_url %}{{ url_for('mud_clients.index', _external=True) }}{% endblock meta_url %}
5+
{% block meta_url %}{{ url_for('help.mud_clients.index', _external=True) }}{% endblock meta_url %}
66
{% block title %}MUD Clients{% endblock title %}
77
{% block header %}MUD Clients{% endblock header %}
88
{%- block content %}
@@ -39,7 +39,7 @@
3939
<p>
4040
After you download a client, tell it to connect to
4141
<code>isharmud.com</code> on port number <code>23</code> or <code>9999</code> to join the game.
42-
See our <a href="{{ url_for('welcome.getstarted') }}" title="getting started guide">getting started guide</a>.
42+
See our <a href="{{ url_for('help.getstarted') }}" title="getting started guide">getting started guide</a>.
4343
</p>
4444
<p>
4545
Everything listed here can be used at no cost.

templates/base/welcome.html.j2

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
{%- endif %}
3030
<p>
3131
Play the game for free by connecting with any
32-
<a href="{{ url_for('mud_clients.index') }}">MUD client</a> to:
32+
<a href="{{ url_for('help.mud_clients.index') }}">MUD client</a> to:
3333
</p>
3434
<ul>
3535
<li>

0 commit comments

Comments
 (0)