From a04debbc836242b5d141dc1357f872f2f3ea9c25 Mon Sep 17 00:00:00 2001 From: shoopea Date: Fri, 31 May 2019 11:28:16 +0800 Subject: [PATCH] test --- obj.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/obj.go b/obj.go index 78f2066..ce9a846 100644 --- a/obj.go +++ b/obj.go @@ -341,7 +341,7 @@ func addObjUser(name string) (int64, error) { func getObjUserID(s string) int64 { if v, ok := cacheObjUser.Load(s); ok { u := v.(ChatWarsUser) - return n.ObjID64 + return u.ObjID64 } else { objID64, err := addObjUser(s) logOnError(err, "getObjUserID")