|
@@ -38,18 +38,9 @@ public class ZDRoom extends Room {
|
|
|
this.data.gameType = jsonData.getInteger("gameType");
|
|
|
this.data.ownerId = player != null? player.getId() : "";
|
|
|
this.data.maxNum = 4;
|
|
|
- // 级牌 0:随机打几 1:固定打2
|
|
|
- this.data.tc = jsonData.getInteger("tc");
|
|
|
- // 积分 0:123 1:124
|
|
|
- this.data.pv = jsonData.getInteger("pv");
|
|
|
this.data.mode = jsonData.getInteger("mode");
|
|
|
this.data.modev = jsonData.getInteger("modev");
|
|
|
|
|
|
- // 连续打
|
|
|
- if (this.data.mode == 1) {
|
|
|
- this.data.maxRound = 9999;
|
|
|
- }
|
|
|
-
|
|
|
// 按局数
|
|
|
if (this.data.mode == 2) {
|
|
|
this.data.maxRound = jsonData.getInteger("modev");
|
|
@@ -391,11 +382,11 @@ public class ZDRoom extends Room {
|
|
|
// 随机定庄
|
|
|
this.data.zhuangPos = RandomUtil.getIndex(this.data.maxNum);
|
|
|
// 随机打几
|
|
|
- if (this.data.tc == 0) {
|
|
|
+ if (this.jsonData.getInteger("tc") == 0) {
|
|
|
this.data.curLevelIndex = RandomUtil.getIndex(GDUtils.levelPoint.length);
|
|
|
}
|
|
|
// 固定打2
|
|
|
- if (this.data.tc == 1) {
|
|
|
+ if (this.jsonData.getInteger("tc") == 1) {
|
|
|
this.data.curLevelIndex = 0;
|
|
|
}
|
|
|
this.data.curLevelPoint = GDUtils.levelPoint[this.data.curLevelIndex];
|
|
@@ -1141,7 +1132,7 @@ public class ZDRoom extends Room {
|
|
|
switch (teammateData.getRank()) {
|
|
|
case 2:
|
|
|
// 搭档2游, +3
|
|
|
- if (this.data.pv == 0) {
|
|
|
+ if (this.jsonData.getInteger("pv") == 0) {
|
|
|
scores = 3;
|
|
|
} else {
|
|
|
scores = 4;
|