Commit afe4edb21496e7b999a1a7a110e59d949469be44

Authored by 李旭
1 parent 77c6d197
Exists in master

发放金币除以4

Showing 1 changed file with 1 additions and 1 deletions   Show diff stats
src/HttpServer/logic/logic.go
... ... @@ -476,7 +476,7 @@ func HandlerFetchproterybox(w http.ResponseWriter, data string) {
476 476 }
477 477  
478 478 if cfg.Reward > 0 {
479   - cfg.Reward = int(cfg.Reward / 2)
  479 + cfg.Reward = int(cfg.Reward / 4)
480 480 }
481 481  
482 482 //加金币
... ...