diff options
Diffstat (limited to 'src/messages.rs')
-rw-r--r-- | src/messages.rs | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/src/messages.rs b/src/messages.rs index 03a96b4a0a64..948787f1393b 100644 --- a/src/messages.rs +++ b/src/messages.rs @@ -165,11 +165,8 @@ choice = ["Say this", "Or this"] } } -static MESSAGES_RAW: &'static str = include_str!("messages.toml"); - -lazy_static! { - static ref MESSAGES: NestedMap<'static> = - toml::from_str(MESSAGES_RAW).unwrap(); +static_cfg! { + static ref MESSAGES: NestedMap<'static> = toml_file("messages.toml"); } /// Look up a game message based on the given (dot-separated) name, with the |