diff options
Diffstat (limited to 'Aktywator/Bws.cs')
-rw-r--r-- | Aktywator/Bws.cs | 10 |
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()); } } |