Skip to content

Commit

Permalink
removed longsword of hymie
Browse files Browse the repository at this point in the history
  • Loading branch information
atsb committed Dec 30, 2019
1 parent dd085f1 commit 8be5173
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/create.c
Original file line number Diff line number Diff line change
Expand Up @@ -590,7 +590,7 @@ makeobject (int j)
{
froom (3, OSWORD, 3); /* sunsword + 3 */
froom (5, O2SWORD, rnd (4)); /* a two handed sword */
froom (5, OHSWORD, rnd (4)); /* a longsword of Hymie */
froom (5, OHSWORD, rnd (4)); /* a longsword of slashing */
froom (3, OBELT, 4); /* belt of striking */
froom (3, OENERGYRING, 3); /* energy ring */
froom (4, OPLATE, 5); /* platemail + 5 */
Expand Down
2 changes: 1 addition & 1 deletion src/data.c
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ char *objectname[] =
"device of theft prevention", "a brilliant diamond", "a ruby",
"an enchanting emerald", "a sparkling sapphire", "the dungeon entrance",
"a volcanic shaft leaning downward", "the base of a volcanic shaft",
"a battle axe", "a longsword", "a longsword of Hymie", "ring mail",
"a battle axe", "a longsword", "a longsword of slashing", "ring mail",
"studded leather armor",
"splint mail", "plate armor", "stainless plate armor",
"a lance of death",
Expand Down
4 changes: 2 additions & 2 deletions src/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -894,7 +894,7 @@ wield (void)
else if (cdesc[SHIELD] != -1 && iven[i - 'a'] == OHSWORD)
{

lprcat ("\nA longsword of Hymie cannot be used while a shield is equipped!");
lprcat ("\nA longsword of slashing cannot be used while a shield is equipped!");
return;

}
Expand Down Expand Up @@ -1006,7 +1006,7 @@ wear (void)
}
if (iven[cdesc[WIELD]] == OHSWORD)
{
lprcat("\nYou are holding a longsword of Hymie!");
lprcat("\nYou are holding a longsword of slashing!");
return;
}
cdesc[SHIELD] = i - 'a';
Expand Down

0 comments on commit 8be5173

Please sign in to comment.