车迟斗法超int修改,打点信息修改

lvxinran 2020-11-18 11:44:37 +08:00
parent aa985f2a7f
commit 6b88321136
2 changed files with 2 additions and 2 deletions

View File

@ -83,7 +83,7 @@ public enum ReportEventEnum {
TIME_SUMMON(56,"Time_summon",new CommonEventHandler(),new String[]{"hero_id","summon_type","cost_item_id","cost_amount","hero_id_quality_list"}),
FATALITY_SUMMON(57,"fatality_summon",new CommonEventHandler(),new String[]{"hero_id","summon_type","cost_item_id","cost_amount","hero_id_quality_list"}),
GET_BEAST(58,"get_beast",new CommonEventHandler(),new String[]{"beast_id","quality","get_type"}),
BEAST_LEVEL(59,"beast_level",new CommonEventHandler(),new String[]{"beast_id","old_level","new_level","cost_amount","cost_item_list"}),
BEAST_LEVEL(59,"beast_level",new CommonEventHandler(),new String[]{"beast_id","old_level","new_level","cost_item_list"}),
BEAST_STAR(60,"beast_star",new CommonEventHandler(),new String[]{"beast_id","old_star","new_star","cost_item_list","cost_beast_list"}),
BEAST_SUMMON(61,"beast_summon",new CommonEventHandler(),new String[]{"beast_id","summon_type","new_star","cost_item_id","reward_nums_list"}),

View File

@ -17,7 +17,7 @@ public class CarDealyGuildRank extends AbstractRank{
@Override
public long[] getDataByScore(Double score) {
return new long[]{(int) (score.longValue()/1000),(int) (score.longValue()%1000)};
return new long[]{ score.longValue()/1000,score.longValue()%1000};
}
@Override