#!/usr/bin/python  
 | 
# -*- coding: GBK -*-  
 | 
#  
 | 
##@package GMT_ReloadConfig  
 | 
#  
 | 
# @todo: GM ÖضÁÅäÖà  
 | 
#  
 | 
# @author: Alee  
 | 
# @date 2019-2-21 ÏÂÎç08:16:16  
 | 
# @version 1.0  
 | 
#  
 | 
# @note:   
 | 
#  
 | 
#---------------------------------------------------------------------  
 | 
"""Version = 2014-05-17 12:30"""  
 | 
  
 | 
#µ¼Èë  
 | 
import GMCommon  
 | 
import ReadChConfig  
 | 
#---------------------------------------------------------------------  
 | 
  
 | 
  
 | 
## Ö´ÐÐÂß¼  
 | 
#  @param curPlayer µ±Ç°Íæ¼Ò  
 | 
#  @param gmCmdDict: ÃüÁî×Öµä  
 | 
#  @return None  
 | 
#  @remarks º¯ÊýÏêϸ˵Ã÷.  
 | 
def OnExec(orderId, gmCmdDict):  
 | 
    ReadChConfig.ReloadConfig()  
 | 
    # »Ø¸´  
 | 
    GMCommon.GMCommandResult(orderId, gmCmdDict, GMCommon.Def_Success)   
 | 
    return  
 | 
  
 |