summaryrefslogtreecommitdiff
path: root/src/mmo/extract.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mmo/extract.cpp')
-rw-r--r--src/mmo/extract.cpp7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/mmo/extract.cpp b/src/mmo/extract.cpp
index 7a00c71..d486ed5 100644
--- a/src/mmo/extract.cpp
+++ b/src/mmo/extract.cpp
@@ -45,13 +45,6 @@ bool extract(XString str, AString *rv)
bool extract(XString str, GlobalReg *var)
{
- // vars used to be stored signed
- int compat_value;
- if (extract(str, record<','>(&var->str, &compat_value)))
- {
- var->value = compat_value;
- return true;
- }
return extract(str,
record<','>(&var->str, &var->value));
}