feat: display a month before negative years ; closes #92
This commit is contained in:
parent
e844e27593
commit
290d8fbcfd
|
@ -592,6 +592,7 @@ export const getters = {
|
||||||
return state.playerAge.month < state.playerAgeMax.month
|
return state.playerAge.month < state.playerAgeMax.month
|
||||||
},
|
},
|
||||||
gameMonth: (state) => {
|
gameMonth: (state) => {
|
||||||
|
const gd = state.gameDate < 0 ? state.gameDate + 1440000 : state.gameDate
|
||||||
return {
|
return {
|
||||||
1: 'Jan.',
|
1: 'Jan.',
|
||||||
2: 'Feb.',
|
2: 'Feb.',
|
||||||
|
@ -605,7 +606,7 @@ export const getters = {
|
||||||
10: 'Oct.',
|
10: 'Oct.',
|
||||||
11: 'Nov.',
|
11: 'Nov.',
|
||||||
12: 'Dec.',
|
12: 'Dec.',
|
||||||
}[(state.gameDate % 12) + 1]
|
}[(gd % 12) + 1]
|
||||||
},
|
},
|
||||||
gameYear: (state) => {
|
gameYear: (state) => {
|
||||||
return Math.floor(state.gameDate / 12)
|
return Math.floor(state.gameDate / 12)
|
||||||
|
|
Reference in New Issue