Skip to content

Commit

Permalink
Erreur uwamp
Browse files Browse the repository at this point in the history
erreur uwamp
prepa tag 1.9.4
  • Loading branch information
machine62 committed Apr 20, 2024
1 parent 3e9b197 commit 1160c8a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 3 additions & 2 deletions cdr_list.php
Original file line number Diff line number Diff line change
Expand Up @@ -38,12 +38,13 @@
$user_technology = $user_empire["technology"];
// todo utiliser formule de pitch
$fret_recycleur = 20000;
if ($user_technology['Hyp'] !=0)
if ((int)$user_technology['Hyp'] !=0) // (int) sinon bug sous windows ( uwamp)
{
$fret_recycleur = (20000 * (1 + 0.05 * $user_technology['Hyp']));
$fret_recycleur = (20000 * (1 + 0.05 * (int)$user_technology['Hyp']));
}
?>


<br>

<table id="trier" class="og-table og-medium-table">
Expand Down
2 changes: 1 addition & 1 deletion version.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Champs de ruines
1.9.3
1.9.4
Champs de ruines,Champs de ruines,cdr,cdr,cdr.php,1,0
3.3.9

0 comments on commit 1160c8a

Please sign in to comment.