diff options
author | Matheus Macabu <mkbu95@gmail.com> | 2015-07-04 15:55:06 -0300 |
---|---|---|
committer | Matheus Macabu <mkbu95@gmail.com> | 2015-07-04 15:55:06 -0300 |
commit | fb82e87c39227921fc3397a8763f0bdb0921a28b (patch) | |
tree | 4a2e69d9eafa3af0ff62ae1959750504393254c5 | |
parent | 188cc4784d36f2526f25df9137230bcbf7e25123 (diff) | |
download | hercules-fb82e87c39227921fc3397a8763f0bdb0921a28b.tar.gz hercules-fb82e87c39227921fc3397a8763f0bdb0921a28b.tar.bz2 hercules-fb82e87c39227921fc3397a8763f0bdb0921a28b.tar.xz hercules-fb82e87c39227921fc3397a8763f0bdb0921a28b.zip |
* Quality of life change: display name of the NPC with an invalid view data.
Signed-off-by: Matheus Macabu <mkbu95@gmail.com>
-rw-r--r-- | src/map/status.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/status.c b/src/map/status.c index 62d4f27fe..1136b4fec 100644 --- a/src/map/status.c +++ b/src/map/status.c @@ -6233,7 +6233,7 @@ void status_set_viewdata(struct block_list *bl, int class_) if (vd) nd->vd = vd; else - ShowError("status_set_viewdata (NPC): No view data for class %d\n", class_); + ShowError("status_set_viewdata (NPC): No view data for class %d (name=%s)\n", class_, nd->name); } break; case BL_HOM: //[blackhole89] |