v1.7.3 修复个别日太岁方位的错误;修复八字身宫计算错误的问题。
This commit is contained in:
@@ -527,15 +527,12 @@ public class EightChar {
|
||||
public String getShenGong() {
|
||||
int monthZhiIndex = LunarUtil.find(getMonthZhi(), MONTH_ZHI, 0);
|
||||
int timeZhiIndex = LunarUtil.find(getTimeZhi(), LunarUtil.ZHI, 0);
|
||||
int offset = monthZhiIndex + timeZhiIndex;
|
||||
while (offset > 12) {
|
||||
offset -= 12;
|
||||
}
|
||||
int ganIndex = (lunar.getYearGanIndexExact() + 1) * 2 + (offset % 12);
|
||||
int offset = (monthZhiIndex + timeZhiIndex - 1) % 12;
|
||||
int ganIndex = (lunar.getYearGanIndexExact() + 1) * 2 + offset;
|
||||
while (ganIndex > 10) {
|
||||
ganIndex -= 10;
|
||||
}
|
||||
return LunarUtil.GAN[ganIndex] + MONTH_ZHI[offset];
|
||||
return LunarUtil.GAN[ganIndex + 1] + MONTH_ZHI[offset + 1];
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user