병종 이미지경로 변경

This commit is contained in:
2020-04-30 06:31:12 +09:00
parent d19ebb6b13
commit a8cc2fc671
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -627,7 +627,7 @@ function generalInfo(General $generalObj) {
$crewType = $generalObj->getCrewTypeObj(); $crewType = $generalObj->getCrewTypeObj();
$weapImage = ServConfig::$gameImagePath."/weap{$crewType->id}.png"; $weapImage = ServConfig::$gameImagePath."/crewtype{$crewType->id}.png";
if($show_img_level < 2) { $weapImage = ServConfig::$sharedIconPath."/default.jpg"; }; if($show_img_level < 2) { $weapImage = ServConfig::$sharedIconPath."/default.jpg"; };
$imagePath = GetImageURL(...$generalObj->getVars('imgsvr', 'picture')); $imagePath = GetImageURL(...$generalObj->getVars('imgsvr', 'picture'));
echo "<table width=498 class='tb_layout bg2'> echo "<table width=498 class='tb_layout bg2'>
+1 -1
View File
@@ -288,7 +288,7 @@ class che_징병 extends Command\GeneralCommand{
$crewObj->img = ServConfig::$sharedIconPath."/default.jpg"; $crewObj->img = ServConfig::$sharedIconPath."/default.jpg";
} }
else{ else{
$crewObj->img = ServConfig::$gameImagePath."/weap".$unit->id.".png"; $crewObj->img = ServConfig::$gameImagePath."/crewtype".$unit->id.".png";
} }
$crewObj->baseRiceShort = round($crewObj->baseRice, 1); $crewObj->baseRiceShort = round($crewObj->baseRice, 1);