Browse Source

Fix a mistake in npctalk

Atemo 9 năm trước cách đây
mục cha
commit
6f34c14c0e
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      src/map/script.c

+ 1 - 1
src/map/script.c

@@ -14258,7 +14258,7 @@ BUILDIN_FUNC(npctalk)
 	if (nd) {
 		char message[256];
 		safesnprintf(message, sizeof(message), "%s", str);
-		clif_disp_overhead(&nd->bl, str);
+		clif_disp_overhead(&nd->bl, message);
 	}
 	return SCRIPT_CMD_SUCCESS;
 }