diff options
author | Daniel Schadt <kingdread@gmx.de> | 2019-12-20 18:04:24 +0100 |
---|---|---|
committer | Daniel Schadt <kingdread@gmx.de> | 2019-12-20 18:04:24 +0100 |
commit | 9f4a4eaa06f3d0136de9088c0e60a0c077248c91 (patch) | |
tree | 4ab0e0c9f5910643ac6404c390e6aa6fad4ca470 /src/output.rs | |
parent | 087580b3c269dbc5b2298ff6f4590f010279d339 (diff) | |
download | kondou-9f4a4eaa06f3d0136de9088c0e60a0c077248c91.tar.gz kondou-9f4a4eaa06f3d0136de9088c0e60a0c077248c91.tar.bz2 kondou-9f4a4eaa06f3d0136de9088c0e60a0c077248c91.zip |
remove hard coded palette IDs
Now that the API actually returns the proper palette IDs, we can use
those values instead of relying on the hard coded values.
This also gets rid of the make_table script that was mostly hackish
anyway, and the lazy static HashMap.
Diffstat (limited to 'src/output.rs')
-rw-r--r-- | src/output.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/output.rs b/src/output.rs index 9406571..8d71909 100644 --- a/src/output.rs +++ b/src/output.rs @@ -36,7 +36,7 @@ pub fn show_build_template(build: &BuildTemplate) -> io::Result<()> { color_spec.set_fg(Some(HEADER_COLOR)); color_spec.set_bold(true); - let mut fields = vec![("Profession:", build.profession().to_string())]; + let mut fields = vec![("Profession:", build.profession().name.clone())]; fields.push(("Skills:", format_skill(&build.skills()[0]))); for skill in build.skills().iter().skip(1) { |