Added color to poofs --Rumble

This commit is contained in:
Rumble 2013-04-03 00:57:51 +00:00
parent e49c8b648f
commit 2cfae9ff43
4 changed files with 16 additions and 1 deletions

View file

@ -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

View file

@ -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

View file

@ -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

View file

@ -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));