summaryrefslogtreecommitdiff
path: root/npc/functions/string.txt
diff options
context:
space:
mode:
Diffstat (limited to 'npc/functions/string.txt')
-rw-r--r--npc/functions/string.txt3
1 files changed, 2 insertions, 1 deletions
diff --git a/npc/functions/string.txt b/npc/functions/string.txt
index efeaf476..ef2e4c2a 100644
--- a/npc/functions/string.txt
+++ b/npc/functions/string.txt
@@ -101,7 +101,8 @@ function script format_number {
if (getargcount() < 2 && playerattached()) {
// get from user language
switch (Lang) {
- case 1: .@separator$ = " "; break; // French
+ case LANG_FR: .@separator$ = " "; break; // French
+ //case LANG_BR: .@separator$ = "."; break; // Portuguese
default: .@separator$ = ","; // English (default)
}
}