Skip to content

Commit

Permalink
#188 - Converted CRLF to LF
Browse files Browse the repository at this point in the history
  • Loading branch information
Allen B. Cummings committed Jan 19, 2018
1 parent a6add87 commit cc1104f
Show file tree
Hide file tree
Showing 1,328 changed files with 1,335 additions and 1,335 deletions.
6 changes: 3 additions & 3 deletions LICENSE
@@ -1,4 +1,4 @@
Copyright (c) 2018, Allen Cummings, Realms MUD (maeglin@Realms MUD.org)
Copyright (c) 2018, Allen Cummings, RealmsMUD (maeglin@RealmsMUD.org)
All rights reserved.

*****
Expand All @@ -11,7 +11,7 @@ this software may NOT be used in whole or in part without prior written consent
from the author.
*****

The latest version of this mudlib can be found at: http://scm.Realms MUD.org
The latest version of this mudlib can be found at: http://scm.RealmsMUD.org

Redistribution and use in source and forms, with or without modification, are
permitted provided that the following conditions are met:
Expand All @@ -24,7 +24,7 @@ notice as noted within each source file.
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.

- Neither the name of Realms MUD nor the names of its contributors may be used
- Neither the name of RealmsMUD nor the names of its contributors may be used
to endorse or promote products derived from this software without specific
prior written permission.

Expand Down
4 changes: 2 additions & 2 deletions README.md
@@ -1,6 +1,6 @@
![Build Status](http://angmar.maelstrom.cc:8081/buildStatus/icon?job=Realms%20Core%20Library)
# Introduction
This is the core library for Realms MUD. Many content creators find building rich areas to be a very difficult task.
This is the core library for RealmsMUD. Many content creators find building rich areas to be a very difficult task.
When the creator wants to do something "interesting", the ability to create said interesting things is often beyond the
ability of all but the most programatically-adept. The goal of this library is to abstract the difficulty of creating detailed and complex
worlds. Some of the highlights include:
Expand All @@ -11,7 +11,7 @@ worlds. Some of the highlights include:
- Crafting: Full support for players creating their own objects is supported
- Faction support: Players/monsters can belong to factions, allowing for complex interactions.

![A quest](http://Realms MUD.org/images/intro.gif)
![A quest](http://RealmsMUD.org/images/intro.gif)
# Getting Started
The mudlib has been broken down into what I felt was a sensible directory structure:

Expand Down
2 changes: 1 addition & 1 deletion commands/baseCommand.c
@@ -1,5 +1,5 @@
//*****************************************************************************
// Copyright (c) 2018 - Allen Cummings, Realms MUD, All rights reserved. See
// Copyright (c) 2018 - Allen Cummings, RealmsMUD, All rights reserved. See
// the accompanying LICENSE file for details.
//*****************************************************************************
#include <mtypes.h>
Expand Down
2 changes: 1 addition & 1 deletion commands/commandRegistry.c
@@ -1,5 +1,5 @@
//*****************************************************************************
// Copyright (c) 2018 - Allen Cummings, Realms MUD, All rights reserved. See
// Copyright (c) 2018 - Allen Cummings, RealmsMUD, All rights reserved. See
// the accompanying LICENSE file for details.
//*****************************************************************************
private string PlayerCommands = "/lib/commands/player/";
Expand Down
2 changes: 1 addition & 1 deletion commands/player/crafting.c
@@ -1,5 +1,5 @@
//*****************************************************************************
// Copyright (c) 2018 - Allen Cummings, Realms MUD, All rights reserved. See
// Copyright (c) 2018 - Allen Cummings, RealmsMUD, All rights reserved. See
// the accompanying LICENSE file for details.
//*****************************************************************************
inherit "/lib/commands/baseCommand.c";
Expand Down
2 changes: 1 addition & 1 deletion commands/player/drop.c
@@ -1,5 +1,5 @@
//*****************************************************************************
// Copyright (c) 2018 - Allen Cummings, Realms MUD, All rights reserved. See
// Copyright (c) 2018 - Allen Cummings, RealmsMUD, All rights reserved. See
// the accompanying LICENSE file for details.
//*****************************************************************************
inherit "/lib/commands/baseCommand.c";
Expand Down
2 changes: 1 addition & 1 deletion commands/player/get.c
@@ -1,5 +1,5 @@
//*****************************************************************************
// Copyright (c) 2018 - Allen Cummings, Realms MUD, All rights reserved. See
// Copyright (c) 2018 - Allen Cummings, RealmsMUD, All rights reserved. See
// the accompanying LICENSE file for details.
//*****************************************************************************
inherit "/lib/commands/baseCommand.c";
Expand Down
2 changes: 1 addition & 1 deletion commands/player/help.c
@@ -1,5 +1,5 @@
//*****************************************************************************
// Copyright (c) 2018 - Allen Cummings, Realms MUD, All rights reserved. See
// Copyright (c) 2018 - Allen Cummings, RealmsMUD, All rights reserved. See
// the accompanying LICENSE file for details.
//*****************************************************************************
inherit "/lib/commands/baseCommand.c";
Expand Down
2 changes: 1 addition & 1 deletion commands/player/inventory.c
@@ -1,5 +1,5 @@
//*****************************************************************************
// Copyright (c) 2018 - Allen Cummings, Realms MUD, All rights reserved. See
// Copyright (c) 2018 - Allen Cummings, RealmsMUD, All rights reserved. See
// the accompanying LICENSE file for details.
//*****************************************************************************
inherit "/lib/commands/baseCommand.c";
Expand Down
2 changes: 1 addition & 1 deletion commands/player/kill.c
@@ -1,5 +1,5 @@
//*****************************************************************************
// Copyright (c) 2018 - Allen Cummings, Realms MUD, All rights reserved. See
// Copyright (c) 2018 - Allen Cummings, RealmsMUD, All rights reserved. See
// the accompanying LICENSE file for details.
//*****************************************************************************
inherit "/lib/commands/baseCommand.c";
Expand Down
2 changes: 1 addition & 1 deletion commands/player/look.c
@@ -1,5 +1,5 @@
//*****************************************************************************
// Copyright (c) 2018 - Allen Cummings, Realms MUD, All rights reserved. See
// Copyright (c) 2018 - Allen Cummings, RealmsMUD, All rights reserved. See
// the accompanying LICENSE file for details.
//*****************************************************************************
inherit "/lib/commands/baseCommand.c";
Expand Down
2 changes: 1 addition & 1 deletion commands/player/quests.c
@@ -1,5 +1,5 @@
//*****************************************************************************
// Copyright (c) 2018 - Allen Cummings, Realms MUD, All rights reserved. See
// Copyright (c) 2018 - Allen Cummings, RealmsMUD, All rights reserved. See
// the accompanying LICENSE file for details.
//*****************************************************************************
inherit "/lib/commands/baseCommand.c";
Expand Down
2 changes: 1 addition & 1 deletion commands/player/quit.c
@@ -1,5 +1,5 @@
//*****************************************************************************
// Copyright (c) 2018 - Allen Cummings, Realms MUD, All rights reserved. See
// Copyright (c) 2018 - Allen Cummings, RealmsMUD, All rights reserved. See
// the accompanying LICENSE file for details.
//*****************************************************************************
inherit "/lib/commands/baseCommand.c";
Expand Down
2 changes: 1 addition & 1 deletion commands/player/research.c
@@ -1,5 +1,5 @@
//*****************************************************************************
// Copyright (c) 2018 - Allen Cummings, Realms MUD, All rights reserved. See
// Copyright (c) 2018 - Allen Cummings, RealmsMUD, All rights reserved. See
// the accompanying LICENSE file for details.
//*****************************************************************************
inherit "/lib/commands/baseCommand.c";
Expand Down
2 changes: 1 addition & 1 deletion commands/player/save.c
@@ -1,5 +1,5 @@
//*****************************************************************************
// Copyright (c) 2018 - Allen Cummings, Realms MUD, All rights reserved. See
// Copyright (c) 2018 - Allen Cummings, RealmsMUD, All rights reserved. See
// the accompanying LICENSE file for details.
//*****************************************************************************
inherit "/lib/commands/baseCommand.c";
Expand Down
2 changes: 1 addition & 1 deletion commands/player/say.c
@@ -1,5 +1,5 @@
//******************************************************************************
// Copyright (c) 2018 - Allen Cummings, Realms MUD, All rights reserved. See
// Copyright (c) 2018 - Allen Cummings, RealmsMUD, All rights reserved. See
// the accompanying LICENSE file for details.
//*****************************************************************************
inherit "/lib/commands/baseCommand.c";
Expand Down
2 changes: 1 addition & 1 deletion commands/player/score.c
@@ -1,5 +1,5 @@
//*****************************************************************************
// Copyright (c) 2018 - Allen Cummings, Realms MUD, All rights reserved. See
// Copyright (c) 2018 - Allen Cummings, RealmsMUD, All rights reserved. See
// the accompanying LICENSE file for details.
//*****************************************************************************
inherit "/lib/commands/baseCommand.c";
Expand Down
2 changes: 1 addition & 1 deletion commands/player/shop.c
@@ -1,5 +1,5 @@
//*****************************************************************************
// Copyright (c) 2018 - Allen Cummings, Realms MUD, All rights reserved. See
// Copyright (c) 2018 - Allen Cummings, RealmsMUD, All rights reserved. See
// the accompanying LICENSE file for details.
//*****************************************************************************
inherit "/lib/commands/baseCommand.c";
Expand Down
2 changes: 1 addition & 1 deletion commands/player/shout.c
@@ -1,5 +1,5 @@
//*****************************************************************************
// Copyright (c) 2018 - Allen Cummings, Realms MUD, All rights reserved. See
// Copyright (c) 2018 - Allen Cummings, RealmsMUD, All rights reserved. See
// the accompanying LICENSE file for details.
//*****************************************************************************
inherit "/lib/commands/baseCommand.c";
Expand Down
2 changes: 1 addition & 1 deletion commands/player/skills.c
@@ -1,5 +1,5 @@
//*****************************************************************************
// Copyright (c) 2018 - Allen Cummings, Realms MUD, All rights reserved. See
// Copyright (c) 2018 - Allen Cummings, RealmsMUD, All rights reserved. See
// the accompanying LICENSE file for details.
//*****************************************************************************
inherit "/lib/commands/baseCommand.c";
Expand Down
2 changes: 1 addition & 1 deletion commands/player/tell.c
@@ -1,5 +1,5 @@
//*****************************************************************************
// Copyright (c) 2018 - Allen Cummings, Realms MUD, All rights reserved. See
// Copyright (c) 2018 - Allen Cummings, RealmsMUD, All rights reserved. See
// the accompanying LICENSE file for details.
//*****************************************************************************
inherit "/lib/commands/baseCommand.c";
Expand Down
2 changes: 1 addition & 1 deletion commands/player/traits.c
@@ -1,5 +1,5 @@
//*****************************************************************************
// Copyright (c) 2018 - Allen Cummings, Realms MUD, All rights reserved. See
// Copyright (c) 2018 - Allen Cummings, RealmsMUD, All rights reserved. See
// the accompanying LICENSE file for details.
//*****************************************************************************
inherit "/lib/commands/baseCommand.c";
Expand Down
2 changes: 1 addition & 1 deletion commands/player/who.c
@@ -1,5 +1,5 @@
//*****************************************************************************
// Copyright (c) 2018 - Allen Cummings, Realms MUD, All rights reserved. See
// Copyright (c) 2018 - Allen Cummings, RealmsMUD, All rights reserved. See
// the accompanying LICENSE file for details.
//*****************************************************************************
inherit "/lib/commands/baseCommand.c";
Expand Down
2 changes: 1 addition & 1 deletion commands/wizard/cat.c
@@ -1,5 +1,5 @@
//*****************************************************************************
// Copyright (c) 2018 - Allen Cummings, Realms MUD, All rights reserved. See
// Copyright (c) 2018 - Allen Cummings, RealmsMUD, All rights reserved. See
// the accompanying LICENSE file for details.
//*****************************************************************************
inherit "/lib/commands/baseCommand.c";
Expand Down
2 changes: 1 addition & 1 deletion commands/wizard/cc.c
@@ -1,5 +1,5 @@
//*****************************************************************************
// Copyright (c) 2018 - Allen Cummings, Realms MUD, All rights reserved. See
// Copyright (c) 2018 - Allen Cummings, RealmsMUD, All rights reserved. See
// the accompanying LICENSE file for details.
//*****************************************************************************
inherit "/lib/commands/baseCommand.c";
Expand Down
2 changes: 1 addition & 1 deletion commands/wizard/cd.c
@@ -1,5 +1,5 @@
//*****************************************************************************
// Copyright (c) 2018 - Allen Cummings, Realms MUD, All rights reserved. See
// Copyright (c) 2018 - Allen Cummings, RealmsMUD, All rights reserved. See
// the accompanying LICENSE file for details.
//*****************************************************************************
inherit "/lib/commands/baseCommand.c";
Expand Down
2 changes: 1 addition & 1 deletion commands/wizard/clone.c
@@ -1,5 +1,5 @@
//*****************************************************************************
// Copyright (c) 2018 - Allen Cummings, Realms MUD, All rights reserved. See
// Copyright (c) 2018 - Allen Cummings, RealmsMUD, All rights reserved. See
// the accompanying LICENSE file for details.
//*****************************************************************************
inherit "/lib/commands/baseCommand.c";
Expand Down
2 changes: 1 addition & 1 deletion commands/wizard/cp.c
@@ -1,5 +1,5 @@
//*****************************************************************************
// Copyright (c) 2018 - Allen Cummings, Realms MUD, All rights reserved. See
// Copyright (c) 2018 - Allen Cummings, RealmsMUD, All rights reserved. See
// the accompanying LICENSE file for details.
//*****************************************************************************
inherit "/lib/commands/baseCommand.c";
Expand Down
2 changes: 1 addition & 1 deletion commands/wizard/emote.c
@@ -1,5 +1,5 @@
//*****************************************************************************
// Copyright (c) 2018 - Allen Cummings, Realms MUD, All rights reserved. See
// Copyright (c) 2018 - Allen Cummings, RealmsMUD, All rights reserved. See
// the accompanying LICENSE file for details.
//*****************************************************************************
inherit "/lib/commands/baseCommand.c";
Expand Down
2 changes: 1 addition & 1 deletion commands/wizard/goto.c
@@ -1,5 +1,5 @@
//*****************************************************************************
// Copyright (c) 2018 - Allen Cummings, Realms MUD, All rights reserved. See
// Copyright (c) 2018 - Allen Cummings, RealmsMUD, All rights reserved. See
// the accompanying LICENSE file for details.
//*****************************************************************************
inherit "/lib/commands/baseCommand.c";
Expand Down
2 changes: 1 addition & 1 deletion commands/wizard/light.c
@@ -1,5 +1,5 @@
//*****************************************************************************
// Copyright (c) 2018 - Allen Cummings, Realms MUD, All rights reserved. See
// Copyright (c) 2018 - Allen Cummings, RealmsMUD, All rights reserved. See
// the accompanying LICENSE file for details.
//*****************************************************************************
inherit "/lib/commands/baseCommand.c";
Expand Down
2 changes: 1 addition & 1 deletion commands/wizard/ls.c
@@ -1,5 +1,5 @@
//*****************************************************************************
// Copyright (c) 2018 - Allen Cummings, Realms MUD, All rights reserved. See
// Copyright (c) 2018 - Allen Cummings, RealmsMUD, All rights reserved. See
// the accompanying LICENSE file for details.
//*****************************************************************************
inherit "/lib/commands/baseCommand.c";
Expand Down
2 changes: 1 addition & 1 deletion commands/wizard/more.c
@@ -1,5 +1,5 @@
//*****************************************************************************
// Copyright (c) 2018 - Allen Cummings, Realms MUD, All rights reserved. See
// Copyright (c) 2018 - Allen Cummings, RealmsMUD, All rights reserved. See
// the accompanying LICENSE file for details.
//*****************************************************************************
inherit "/lib/commands/baseCommand.c";
Expand Down
2 changes: 1 addition & 1 deletion commands/wizard/mv.c
@@ -1,5 +1,5 @@
//*****************************************************************************
// Copyright (c) 2018 - Allen Cummings, Realms MUD, All rights reserved. See
// Copyright (c) 2018 - Allen Cummings, RealmsMUD, All rights reserved. See
// the accompanying LICENSE file for details.
//*****************************************************************************
inherit "/lib/commands/baseCommand.c";
Expand Down
2 changes: 1 addition & 1 deletion commands/wizard/patch.c
@@ -1,5 +1,5 @@
//*****************************************************************************
// Copyright (c) 2018 - Allen Cummings, Realms MUD, All rights reserved. See
// Copyright (c) 2018 - Allen Cummings, RealmsMUD, All rights reserved. See
// the accompanying LICENSE file for details.
//*****************************************************************************
inherit "/lib/commands/baseCommand.c";
Expand Down
2 changes: 1 addition & 1 deletion commands/wizard/people.c
@@ -1,5 +1,5 @@
//*****************************************************************************
// Copyright (c) 2018 - Allen Cummings, Realms MUD, All rights reserved. See
// Copyright (c) 2018 - Allen Cummings, RealmsMUD, All rights reserved. See
// the accompanying LICENSE file for details.
//*****************************************************************************
inherit "/lib/commands/baseCommand.c";
Expand Down
2 changes: 1 addition & 1 deletion commands/wizard/pwd.c
@@ -1,5 +1,5 @@
//*****************************************************************************
// Copyright (c) 2018 - Allen Cummings, Realms MUD, All rights reserved. See
// Copyright (c) 2018 - Allen Cummings, RealmsMUD, All rights reserved. See
// the accompanying LICENSE file for details.
//*****************************************************************************
inherit "/lib/commands/baseCommand.c";
Expand Down
2 changes: 1 addition & 1 deletion commands/wizard/set.c
@@ -1,5 +1,5 @@
//*****************************************************************************
// Copyright (c) 2018 - Allen Cummings, Realms MUD, All rights reserved. See
// Copyright (c) 2018 - Allen Cummings, RealmsMUD, All rights reserved. See
// the accompanying LICENSE file for details.
//*****************************************************************************
inherit "/lib/commands/baseCommand.c";
Expand Down
2 changes: 1 addition & 1 deletion commands/wizard/tail.c
@@ -1,5 +1,5 @@
//*****************************************************************************
// Copyright (c) 2018 - Allen Cummings, Realms MUD, All rights reserved. See
// Copyright (c) 2018 - Allen Cummings, RealmsMUD, All rights reserved. See
// the accompanying LICENSE file for details.
//*****************************************************************************
inherit "/lib/commands/baseCommand.c";
Expand Down
2 changes: 1 addition & 1 deletion commands/wizard/wiz.c
@@ -1,5 +1,5 @@
//*****************************************************************************
// Copyright (c) 2018 - Allen Cummings, Realms MUD, All rights reserved. See
// Copyright (c) 2018 - Allen Cummings, RealmsMUD, All rights reserved. See
// the accompanying LICENSE file for details.
//*****************************************************************************
inherit "/lib/commands/baseCommand.c";
Expand Down
2 changes: 1 addition & 1 deletion core/baseSelector.c
@@ -1,5 +1,5 @@
//*****************************************************************************
// Copyright (c) 2018 - Allen Cummings, Realms MUD, All rights reserved. See
// Copyright (c) 2018 - Allen Cummings, RealmsMUD, All rights reserved. See
// the accompanying LICENSE file for details.
//*****************************************************************************
inherit "/lib/core/events.c";
Expand Down
2 changes: 1 addition & 1 deletion core/events.c
Expand Up @@ -2,7 +2,7 @@
// Class: events
// File Name: events.c
//
// Copyright (c) 2018 - Allen Cummings, Realms MUD, All rights reserved. See
// Copyright (c) 2018 - Allen Cummings, RealmsMUD, All rights reserved. See
// the accompanying LICENSE file for details.
//
// Description: This is an admittedly rudimentary event handling system (for
Expand Down
2 changes: 1 addition & 1 deletion core/messageParser.c
Expand Up @@ -2,7 +2,7 @@
// Class: messageParser
// File Name: messageParser.c
//
// Copyright (c) 2018 - Allen Cummings, Realms MUD, All rights reserved. See
// Copyright (c) 2018 - Allen Cummings, RealmsMUD, All rights reserved. See
// the accompanying LICENSE file for details.
//*****************************************************************************
private string MaterialAttributes = "lib/modules/materialAttributes.c";
Expand Down

0 comments on commit cc1104f

Please sign in to comment.