gwang 4 years ago
parent
commit
4de8dffc6f
1 changed files with 5 additions and 1 deletions
  1. 5 1
      Gameserver/Amfphp/process/StoreProc.php

+ 5 - 1
Gameserver/Amfphp/process/StoreProc.php

@@ -452,7 +452,11 @@ class StoreProc {
      * @return type
      */
     public static function AddItemInStore($req) {
-        Err(ErrCode::err_innerfault, "功能待开发 -王刚 2020年1月17日14:36:01");
+        list($rwdStr) = $req->paras;
+        $err = self::AddMultiItemInStore($req, $rwdStr);
+        my_Assert(ErrCode::ok == $err, $err);
+        return Resp::ok();
+//        Err(ErrCode::err_innerfault, "功能待开发 -王刚 2020年1月17日14:36:01");
     }
 
     /**