-
Notifications
You must be signed in to change notification settings - Fork 9
/
patches.ron
72 lines (72 loc) · 2.98 KB
/
patches.ron
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
(
patches: {
"warhammer_3": (
tables: {
"unit_special_abilities_tables": {
"autoresolver_usage": {
"not_empty": "true",
"default_value": "default",
"explanation": "Confirmed crashes if left empty.",
},
},
"battle_entities_tables": {
"locomotion_constant": {
"default_value": "small_entity",
"not_empty": "true",
"explanation": "According to Mixu, this column crashes if empty.",
},
},
"battle_vortexs_tables": {
"shape": {
"not_empty": "true",
"default_value": "circle",
"explanation": "According to Mixu, this column crashes if empty.",
},
},
"pooled_resources_tables": {
"scope": {
"explanation": "According to Mixu, this column crashes if empty.",
"default_value": "FACTION",
"not_empty": "true",
},
"income_policy": {
"not_empty": "true",
"explanation": "According to Mixu, this column crashes if empty.",
"default_value": "END_OF_ROUND",
},
},
"land_units_tables": {
"score_capture_tier": {
"default_value": "domination_infantry",
"not_empty": "true",
"explanation": "According to Mixu, this column crashes if empty.",
},
"key_building_capture_tier": {
"not_empty": "true",
"explanation": "According to Mixu, this column crashes if empty.",
"default_value": "medium",
},
"capture_tier": {
"not_empty": "true",
"explanation": "According to Mixu, this column crashes if empty.",
"default_value": "medium",
},
},
"battle_set_pieces_tables": {
"culture": {
"default_value": "*",
"not_empty": "true",
"explanation": "This column crashes the game if left empty.",
},
},
"agent_subtypes_tables": {
"saving_settings": {
"not_empty": "true",
"default_value": "can_be_saved_loaded",
"explanation": "This column is suspect of crashes when left empty.",
},
},
},
),
},
)