From 8a72fdfb2ec2c84038747951bb798e36409a0f63 Mon Sep 17 00:00:00 2001 From: wangwei01 Date: Fri, 12 Jul 2019 15:09:52 +0800 Subject: [PATCH] 1 --- webapp/controller/TankController.class.php | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/webapp/controller/TankController.class.php b/webapp/controller/TankController.class.php index fdbcbd3..d4d721d 100644 --- a/webapp/controller/TankController.class.php +++ b/webapp/controller/TankController.class.php @@ -24,12 +24,11 @@ class TankController{ $t = array( 'id' => $tank_meta['id'], 'name' => $tank_meta['name'], - 'price' => $tank_meta['price'], 'cost' => $tank_meta['cost'], 'cost_int' => $tank_meta['cost_int'], 'max_lv' => $tank_meta['max_lv'], - 'compose' => $skin_conf['compose'], - 'debris' => $skin_conf['debris'], + 'compose' => $tank_meta['compose'], + 'debris' => $tank_meta['debris'], ); return $t; }