diff options
-rw-r--r-- | db/re/item_db.conf | 2 | ||||
-rw-r--r-- | npc/commands/music.txt | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/db/re/item_db.conf b/db/re/item_db.conf index 8ef11b6ad..c74863ea4 100644 --- a/db/re/item_db.conf +++ b/db/re/item_db.conf @@ -5931,7 +5931,7 @@ item_db: ( Name: "Leather Shirt" Type: "IT_ARMOR" Buy: 1200 - Sell: 450 + Sell: 550 Weight: 310 Def: 34 Loc: "EQP_HEAD_MID" diff --git a/npc/commands/music.txt b/npc/commands/music.txt index 4cf786ee8..2399f679f 100644 --- a/npc/commands/music.txt +++ b/npc/commands/music.txt @@ -29,8 +29,8 @@ OnCall: if (.@m$ == "Not found") { //.@m$ = implode(.@atcmd_parameters$[0], " "); dispbottom "Invalid music key. Current accepted values are:"; - dispbottom "ship, city, ghoul, surreal, magic, forest, mythica, acid, misuse, prelude, sunrise, peace, toast, woodland2, lands, deepcave"; - dispbottom "8bit, action, hurns, fields, tulim, candor, lof, icecave, manacave, adventure"; + dispbottom "ship, city, ghoul, surreal, magic, forest, mythica, acid, misuse, prelude, sunrise, peace, toast, woodland2, unforgiving"; + dispbottom "deepcave, 8bit, action, hurns, fields, tulim, candor, lof, icecave, manacave, adventure"; } else { changemusic .@map$, .@m$; } @@ -55,7 +55,7 @@ OnInit: htput(.hash, "peace2", "peace2.ogg"); htput(.hash, "toast", "dragon_and_toast.ogg"); htput(.hash, "woodland2", "New_Woodlands.ogg"); - htput(.hash, "lands", "Unforgiving_Lands.ogg"); + htput(.hash, "unforgiving","Unforgiving_Lands.ogg"); htput(.hash, "deepcave", "Deep_Cave.ogg"); htput(.hash, "8bit", "8bit_the_hero.ogg"); htput(.hash, "action", "Arabesque.ogg"); |