diff --git a/changelog b/changelog index 2315080..b952957 100644 --- a/changelog +++ b/changelog @@ -2,6 +2,9 @@ TbaMUD is currently being developed by The Builder Academy. If you need any help, find any bugs, or have ideas for improvement please stop by TBA at telnet://tbamud.com:9091 or email rumble@tbamud.com --Rumble @ +[Apr 03 2013] - Rumble + Fixed typo in Whirlwind + Added color to poofs. [Mar 02 2013] - Rumble Updated World and files for 3.64 release. [Feb 12 2013] - Vatiken diff --git a/lib/misc/typos b/lib/misc/typos index e69de29..cf8e3ec 100644 --- a/lib/misc/typos +++ b/lib/misc/typos @@ -0,0 +1,10 @@ +Text Intro Screen~ +Body The title screen when you log in to the MUD still has the old version number. +~ +Name Wolfshayde~ +IdNum 89 +Dated 1362557894 +Level 1 +Room 3001 +Flags 0 0 0 0 +End diff --git a/lib/text/greetings b/lib/text/greetings index 395871e..888957a 100644 --- a/lib/text/greetings +++ b/lib/text/greetings @@ -1,6 +1,6 @@ T B A M U D D E V E L O P M E N T P O R T - 3 . 6 3 + 3 . 6 4 Based on CircleMUD, Created by Jeremy Elson diff --git a/src/act.wizard.c b/src/act.wizard.c index b2d9506..8f81eac 100644 --- a/src/act.wizard.c +++ b/src/act.wizard.c @@ -3128,6 +3128,7 @@ static int perform_set(struct char_data *ch, struct char_data *vict, int mode, c case 39: /* poofin */ if ((vict == ch) || (GET_LEVEL(ch) == LVL_IMPL)) { skip_spaces(&val_arg); + parse_at(val_arg); if (POOFIN(vict)) free(POOFIN(vict)); @@ -3141,6 +3142,7 @@ static int perform_set(struct char_data *ch, struct char_data *vict, int mode, c case 40: /* poofout */ if ((vict == ch) || (GET_LEVEL(ch) == LVL_IMPL)) { skip_spaces(&val_arg); + parse_at(val_arg); if (POOFOUT(vict)) free(POOFOUT(vict));