# I'd like to ask some questions about the latest experimental version of debug

**URL:** https://discourse.cataclysmdda.org/t/id-like-to-ask-some-questions-about-the-latest-experimental-version-of-debug/28938
**Category:** The Lab
**Created:** [July 27, 2023, 3:09pm UTC](https://discourse.cataclysmdda.org/t/id-like-to-ask-some-questions-about-the-latest-experimental-version-of-debug/28938 "2023-07-27T15:09:09Z")
**Posts on this page:** 2
**Page:** 1

<div class="post-metadata">

### Author: ![Hyper2333](https://sea2.discourse-cdn.com/flex016/user_avatar/discourse.cataclysmdda.org/hyper2333/32/12407_2.png) [@Hyper2333](https://discourse.cataclysmdda.org/u/Hyper2333)
#### Post date: [July 27, 2023, 3:09pm UTC](https://discourse.cataclysmdda.org/t/id-like-to-ask-some-questions-about-the-latest-experimental-version-of-debug/28938/1 "2023-07-27T15:09:09Z")

</div>

DEBUG : (json-error)  
Json error: storage/emulated/0/Android/data/com.cleverraven.cataclysmdda.experimental/files/data/mods/Kenan-Modpack-Chinese/secronom/Modification\_Files/Monsters/-Essentials/secro\_ammo\_zombie.json:26:25: Invalid or misplaced field name “countdown\_destroy” in JSON data

```
"explode_in_fire": true,
"countdown_interval": 1,
"countdown_destroy":
                    ^
                     true,
"countdown_action": { "target": "SSxgrenadeact", "target_charges": 10, "active": true, "type": "transform" }

```

},

FUNCTION : void JsonObject::error\_skipped\_members(const std::vector\<size\_t\> &) const  
FILE : /home/runner/work/Cataclysm-DDA/Cataclysm-DDA/android/app/jni/src/…/…/…/…/src/flexbuffer\_json.cpp  
LINE : 333  
VERSION : 720adec

I would like to ask how I should solve such debug, I looked through the txt, it seems to be no problem, but after running the game, there will be this debug, I am very confused.

---

<div class="post-metadata">

### Author: ![Valase](https://sea2.discourse-cdn.com/flex016/user_avatar/discourse.cataclysmdda.org/valase/32/6972_2.png) [@Valase](https://discourse.cataclysmdda.org/u/Valase)
#### Post date: [July 28, 2023, 6:38am UTC](https://discourse.cataclysmdda.org/t/id-like-to-ask-some-questions-about-the-latest-experimental-version-of-debug/28938/2 "2023-07-28T06:38:08Z")

</div>

> [@Hyper2333](#):
>
> I would like to ask how I should solve such debug, […]

As a general rule and good practice, I highly suggest to always include the exact version build ID, as what’s considered “last experimental” or “current experimental” changes every few hours, and might even be different depending on where you’ve grabbed it from.  
Aside from the version, you also should always add your operating system and the mods you’re using, as they can make a big difference.

> [@Hyper2333](#):
>
> […] after running the game, there will be this debug, I am very confused.

Now as for this specific case and to answer your question to the best of my ability, take a closer look at what the debug message says:

> [@Hyper2333](#):
>
> Json error: [path]:[line]:[symbol]: **Invalid or misplaced field name “countdown\_destroy” in JSON data**

This tells you that the game doesn’t understand/accept `"countdown_destroy"` on this item.  
The reason is [this pull request](https://github.com/CleverRaven/Cataclysm-DDA/pull/66161), which removed the processing of `"countdown_destroy"` from the game.

As a possible solution I suggest to delete all occurrences of `"countdown_destroy": true,` from the mod files.
