summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorheinrich5991 <heinrich5991@gmail.com>2018-10-13 11:02:50 +0200
committerheinrich5991 <heinrich5991@gmail.com>2018-10-13 11:02:50 +0200
commitebeb289fef90df0b9a060f6e197b58472660a515 (patch)
tree6de3d0fe282dbee46c1c72a88d0fd1feb2d0a8d8
parentf5fa1a92ed81ed8da721e803a036b1553a38e39e (diff)
Fix nethash
-rw-r--r--scripts/cmd5.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/cmd5.py b/scripts/cmd5.py
index 68881d0bb..84b14f17f 100644
--- a/scripts/cmd5.py
+++ b/scripts/cmd5.py
@@ -30,6 +30,6 @@ for filename in sys.argv[1:]:
hash = hashlib.md5(f).hexdigest().lower()[16:]
#TODO 0.7: improve nethash creation
-if hash == "e42d81cd67b8c7bc":
+if hash == "fc9dffd45c6d100a":
hash = "626fce9a778df4d4"
print('#define GAME_NETVERSION_HASH "%s"' % hash)