Skip to content

Commit

Permalink
Fix the error when trying to add new character
Browse files Browse the repository at this point in the history
  • Loading branch information
artosimonyan committed Dec 26, 2024
1 parent 724dc92 commit d4b5b17
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/config/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -308,7 +308,7 @@ func Load() error {

// Read character configs
for _, entry := range entries {
if !entry.IsDir() || entry.Name() == "template" {
if !entry.IsDir() {
continue
}

Expand Down

0 comments on commit d4b5b17

Please sign in to comment.