diff options
Diffstat (limited to 'src/itemdef.cpp')
-rw-r--r-- | src/itemdef.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/itemdef.cpp b/src/itemdef.cpp index 84ad96c7f..c535ef28c 100644 --- a/src/itemdef.cpp +++ b/src/itemdef.cpp @@ -221,10 +221,9 @@ void ItemDefinition::deSerialize(std::istream &is) // If you add anything here, insert it primarily inside the try-catch // block to not need to increase the version. try { - short_description = deSerializeString16(is); wield_animation = deSerializeString16(is); - } catch (SerializationError &e) { - } + short_description = deSerializeString16(is); + } catch (SerializationError &e) {}; } |