diff options
author | tpart <tpart120@proton.me> | 2024-09-20 01:01:14 +0200 |
---|---|---|
committer | tpart <tpart120@proton.me> | 2024-09-20 01:01:14 +0200 |
commit | 817beb2ae60a2f3ec99cd1e44b0d5f19ae5e9b93 (patch) | |
tree | ccb3fadbaa3683349c2f4a0b1b32f2284e57c491 /client/menu/setup.gd | |
parent | e7a18d518772fbe14f2fbd6e0254a0daf326c210 (diff) | |
download | hurrycurry-817beb2ae60a2f3ec99cd1e44b0d5f19ae5e9b93.tar hurrycurry-817beb2ae60a2f3ec99cd1e44b0d5f19ae5e9b93.tar.bz2 hurrycurry-817beb2ae60a2f3ec99cd1e44b0d5f19ae5e9b93.tar.zst |
Remove Frank Miller name block because of too much complexity and missing translations
Diffstat (limited to 'client/menu/setup.gd')
-rw-r--r-- | client/menu/setup.gd | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/client/menu/setup.gd b/client/menu/setup.gd index 89445ac6..78082e38 100644 --- a/client/menu/setup.gd +++ b/client/menu/setup.gd @@ -55,7 +55,6 @@ func _process(delta): func check(): if username.text == "": return tr("c.error.empty_username") var n = username.text.to_lower() - if n.begins_with("f") and n.ends_with("miller"): return tr("You cannot choose that name.\n(It's too close to your boss')") if character == -1: return tr("You must select a hairstyle") return null |