곽태식

Merge branch 'joke' of ssh://khuhub.khu.ac.kr:12959/kkl/ProbabilityDeath into wallpaper

......@@ -43,7 +43,6 @@ module.exports = (server, app) => {
}
});
})
}
const API_bundle = async () => {
......@@ -106,7 +105,7 @@ module.exports = (server, app) => {
//운명의 장난으로 죽을 확률이 증가하거나 감소함
const rand = Math.floor(Math.random() * 6) //생년월일 중 한자리 뽑음
const rand = Math.floor(Math.random() * 6) * 10//생년월일 중 한자리 뽑음
Destiny=client_birth.charAt(rand)/3; //명시적 형 변환
if(Destiny==0)Destiny=1; //사용자 잘못 입력했을때 예외처리
......