File tree 2 files changed +10
-8
lines changed
2 files changed +10
-8
lines changed Original file line number Diff line number Diff line change 26
26
{%- continue -%}
27
27
{%- endunless -%}
28
28
{%- else -%}
29
- {%- unless update.minecraft-versions -%}
29
+ {%- unless update.minecraft-versions or update.snapshots -%}
30
30
{%- continue -%}
31
31
{%- endunless -%}
32
32
{%- endif -%}
Original file line number Diff line number Diff line change 110
110
< div class ="padding20 no-padding-left no-padding-right ">
111
111
< div class ="container ">
112
112
113
- {%- assign latest_update = site.updates | where_exp: "item", "item.minecraft-versions" | last -%}
113
+ {%- assign latest_update = site.updates | where_exp: "item", "item.minecraft-versions or item.snapshots " | last -%}
114
114
{%- assign upcoming_version = "" -%}
115
115
{%- assign latest_rc = "" -%}
116
116
{%- for snapshot in latest_update.snapshots -%}
117
117
{%- if snapshot contains "rc" -%}
118
118
{%- assign rc_version = snapshot | split: "-rc" | first -%}
119
119
{%- assign latest_rc = snapshot -%}
120
120
{%- assign has_full_version = false -%}
121
- {%- for mcversion in latest_update.minecraft-versions -%}
122
- {%- if mcversion == rc_version -%}
123
- {%- assign has_full_version = true -%}
124
- {%- break -%}
125
- {%- endif -%}
126
- {%- endfor -%}
121
+ {%- if latest_update.minecraft-versions -%}
122
+ {%- for mcversion in latest_update.minecraft-versions -%}
123
+ {%- if mcversion == rc_version -%}
124
+ {%- assign has_full_version = true -%}
125
+ {%- break -%}
126
+ {%- endif -%}
127
+ {%- endfor -%}
128
+ {%- endif -%}
127
129
{%- unless has_full_version -%}
128
130
{%- assign upcoming_version = rc_version -%}
129
131
{%- break -%}
You can’t perform that action at this time.
0 commit comments