diff options
Diffstat (limited to 'src/command/cmd_funcs.c')
-rw-r--r-- | src/command/cmd_funcs.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/command/cmd_funcs.c b/src/command/cmd_funcs.c index 58c08331..734401f4 100644 --- a/src/command/cmd_funcs.c +++ b/src/command/cmd_funcs.c @@ -4414,8 +4414,8 @@ cmd_occupants(ProfWin* window, const char* const command, gchar** args) occupantswin_occupants_all(); } else { - prefs_set_occupants_char(args[1][0]); - cons_show("Occupants char set to %c.", args[1][0]); + prefs_set_occupants_char(args[1]); + cons_show("Occupants char set to %s.", args[1]); occupantswin_occupants_all(); } |