1
0
mirror of https://github.com/vcmi/vcmi.git synced 2025-08-13 19:54:17 +02:00

Fix duplicated randomResource object

This commit is contained in:
Ivan Savenko
2023-06-16 13:21:24 +03:00
parent 58661fc8ec
commit 5118a642bc
2 changed files with 5 additions and 17 deletions

View File

@@ -653,19 +653,6 @@
}, },
"randomDwelling" : { "index" :216, "handler": "randomDwelling", "types" : { "object" : { "index" : 0} } }, "randomDwelling" : { "index" :216, "handler": "randomDwelling", "types" : { "object" : { "index" : 0} } },
"randomResource" : {
"index" :76,
"handler": "randomResource",
"types" : {
"object" : {
"index" : 0,
"templates" : {
"normal" : { "animation" : "AVTrndm0", "visitableFrom" : [ "+++", "+-+", "+++" ], "mask" : [ "VV", "VA"] }
}
}
}
},
"randomArtifact" : { "randomArtifact" : {
"index" :65, "index" :65,
"handler": "randomArtifact", "handler": "randomArtifact",

View File

@@ -53,7 +53,7 @@
"randomResource": "randomResource":
{ {
"index" :76, "index" :76,
"handler": "resource", "handler": "randomResource",
"base" : { "base" : {
"base" : { "base" : {
"visitableFrom" : [ "+++", "+-+", "+++" ], "visitableFrom" : [ "+++", "+-+", "+++" ],
@@ -69,9 +69,10 @@
}, },
"templates" : "templates" :
{ {
"res" : "normal" : {
{ "animation" : "AVTrndm0",
"animation" : "AVTrndm0.def" "visitableFrom" : [ "+++", "+-+", "+++" ],
"mask" : [ "VV", "VA"]
} }
} }
} }