This commit is contained in:
Lukas Moungos
2019-12-14 15:31:23 +01:00
parent 284a69c096
commit 7a0a262b61

View File

@@ -125,18 +125,16 @@ namespace ReallifeGamemode.Server.Managers
{ {
if ((uint)vh == hash) if ((uint)vh == hash)
{ {
foreach (string w in _modWeapons) return "test";
{ }
if (NAPI.Util.GetHashKey(w) == hash) }
{ foreach (string w in _modWeapons)
return w; {
} if (NAPI.Util.GetHashKey(w) == hash)
} {
return w;
} }
} }
return "unbekannt"; return "unbekannt";
} }
} }