Fix Generators

This commit is contained in:
2025-08-03 19:25:14 +01:00
parent e0bd9295c7
commit 702aaeb570
15 changed files with 13 additions and 39 deletions
-2
View File
@@ -6,7 +6,6 @@ import (
"math/rand"
"os"
"strings"
"time"
)
type DrowData struct {
@@ -38,7 +37,6 @@ func init() {
if err := json.NewDecoder(file).Decode(&drowData); err != nil {
panic(fmt.Errorf("failed to decode drow.json: %w", err))
}
rand.Seed(time.Now().UnixNano())
}
func DrowName(gender, surname string) string {