修改注释

duhui 2022-03-14 00:01:18 +08:00
parent 6f35e726a0
commit f305dea91f
2 changed files with 3 additions and 3 deletions

View File

@ -11,7 +11,7 @@ import java.util.Map;
/**
* @Author hj
* @Date 2021/10/28 17:11:17
* @Description: homelevel id#id#/
* @Description: homelevel id id /
* @Version 1.0
*/
public class Cmd_homelevel extends GmRoleAbstract{
@ -25,7 +25,7 @@ public class Cmd_homelevel extends GmRoleAbstract{
if (landLevel == null){
return false;
}
int time = args.length > 2?Integer.parseInt(args[2]):TimeUtils.nowInt();
int time = args.length >= 2?Integer.parseInt(args[1]):TimeUtils.nowInt();
ArchitectureInfo info = new ArchitectureInfo(landLevel.getId(), time, 0);
user.getPlayerInfoManager().putArchitectureInfo(landLevel.getPoolID(),info);
}

View File

@ -4,7 +4,7 @@ import com.ljsd.jieling.logic.dao.root.User;
/**
* @Author hj
* @Date 2021/10/28 17:11:17
* @Description: sublay
* @Description: sublay id
* @Version 1.0
*/
public class Cmd_sublay extends GmRoleAbstract{