Browse Source

fixed: 修改断言提示内容.

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

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

@@ -532,7 +532,7 @@ class StoreProc {
         my_Assert(null != $collectHeros, ErrCode::err_innerfault);              # 防御对象为空
         my_Assert(CommUtil::isPropertyExists($collectHeros, $herouid), ErrCode::hero_no); # 检查英雄是否存在
         $hero = new Ins_UserHero($collectHeros->$herouid);                      # 取hero
-        my_Assert($hero->level >= $yanlingVo->mo()->require_herolvl, "唤灵师无法装备比自己等级更高的言灵"); # 可装备的言灵等级受唤灵师等级限制.
+        my_Assert($hero->level >= $yanlingVo->mo()->require_herolvl, "请提升唤灵师等级"); # 可装备的言灵等级受唤灵师等级限制.
         $user->store->yanling->$yanling_uid->herouid = $herouid;                # 言灵上添加反向引用, 避免查询时的循环
         $oldYLid = $collectHeros->$herouid->yanling->$itemtype->itemuid;        # 旧言灵id
         if ($oldYLid > 0) {                                                     # 代表替换操作