cyzhao пре 1 година
родитељ
комит
5cf9faa5b7

+ 1 - 1
Gameserver/App/model/Const/GameConfig.php

@@ -3,7 +3,7 @@
  // 由CodeGenerator创建。
  // Copyright (C) gwang (wanggangzero@qq.com), Loyalsoft@sjz Inc
  // author: gwang 
- // 日期: 2024-05-15 17:45:34
+ // 日期: 2024-05-16 11:12:43
 ////////////////////
 
 /**

+ 11 - 1
Gameserver/App/model/Const/sm_gate.php

@@ -3,7 +3,7 @@
  // 由CodeGenerator创建。
  // Copyright (C) gwang (wanggangzero@qq.com), Loyalsoft@sjz Inc
  // author: gwang 
- // 日期: 2024-05-15 17:02:56
+ // 日期: 2024-05-16 11:06:33
 ////////////////////
 
 
@@ -155,5 +155,15 @@ class sm_gate
     */
     public $sweepNum;
 
+    /**
+    * @var String 挑战模式里奖励的描述信息  
+    */
+    public $layerPriceDesc;
+
+    /**
+    * @var String 挑战模式里说明描述信息  
+    */
+    public $layerRuleDesc;
+
 }
 

+ 1 - 1
Gameserver/App/model/Const/sm_plots.php

@@ -3,7 +3,7 @@
  // 由CodeGenerator创建。
  // Copyright (C) gwang (wanggangzero@qq.com), Loyalsoft@sjz Inc
  // author: gwang 
- // 日期: 2024-05-15 15:00:21
+ // 日期: 2024-05-16 10:23:42
 ////////////////////
 
 

+ 3 - 3
Gameserver/App/process/EmailProc.php

@@ -133,8 +133,8 @@ class EmailProc {
         $mail = self::getMail($zoneid, $uid, $mailId);
         $mail->readts = now();
         self::updateMail($zoneid, $uid, $mail);                                 # 更新邮件数据
-        self::logMailReaded(array($mailId), $uid, $zoneid);                     # 更新数据库中邮件的read记录
-        return Resp::ok(array("rewardstr" => $mail->appendix));
+        self::logMailReaded(array($mailId), $uid, $zoneid);                     # 更新数据库中邮件的read记录              
+        return Resp::ok(array());
     }
 
     /**
@@ -157,7 +157,7 @@ class EmailProc {
         $mail->drawedts = now();                                                # 更新领取时间戳
         self::updateMail($zoneid, $uid, $mail);                                 # 回写邮件数据
         if ($mail->sender_name == '系统') {
-            TaskProc::OnDrawSysMail($mail->sender_uid);
+            //TaskProc::OnDrawSysMail($mail->sender_uid);
         }
         self::logMailDrawed(array($mailId), $uid, $zoneid);                     # 更新数据库中邮件的领取记录
         UserProc::updateUserInfo();