diff options
Diffstat (limited to 'src/itemdef.cpp')
-rw-r--r-- | src/itemdef.cpp | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/src/itemdef.cpp b/src/itemdef.cpp index 51d8f1d5d..53b6e04cd 100644 --- a/src/itemdef.cpp +++ b/src/itemdef.cpp @@ -112,11 +112,8 @@ void ItemDefinition::reset() stack_max = 99; usable = false; liquids_pointable = false; - if(tool_capabilities) - { - delete tool_capabilities; - tool_capabilities = NULL; - } + delete tool_capabilities; + tool_capabilities = NULL; groups.clear(); sound_place = SimpleSoundSpec(); sound_place_failed = SimpleSoundSpec(); |