summaryrefslogtreecommitdiff
path: root/Aktywator/Bws.cs
diff options
context:
space:
mode:
authoremkael <emkael@tlen.pl>2016-11-09 14:25:56 +0100
committeremkael <emkael@tlen.pl>2016-11-14 14:47:52 +0100
commit0cfcb31daea464584315263225381ba53c24a9eb (patch)
treea4bdcc75dc0cd1c76314d20119f2b9ba6d41f9fc /Aktywator/Bws.cs
parent3fd493b395d27749749587518d76a4e5d648920c (diff)
* HCP support for HandEvaluation table
Diffstat (limited to 'Aktywator/Bws.cs')
-rw-r--r--Aktywator/Bws.cs10
1 files changed, 9 insertions, 1 deletions
diff --git a/Aktywator/Bws.cs b/Aktywator/Bws.cs
index eda99a1..87c9081 100644
--- a/Aktywator/Bws.cs
+++ b/Aktywator/Bws.cs
@@ -434,7 +434,15 @@ namespace Aktywator
ddStr.Append(",");
}
}
- ddStr.Append("0,0,0,0)"); // HCP not supported yet
+ for (int j = 0; j < 4; j++)
+ {
+ ddStr.Append(b.hpcs[j]);
+ if (j < 3)
+ {
+ ddStr.Append(",");
+ }
+ }
+ ddStr.Append(")");
sql.query(ddStr.ToString());
}
}