From 65818155d8bb34640942ede25c3d9128baf07b08 Mon Sep 17 00:00:00 2001 From: "Alex \"rainChu\" Haddad" Date: Wed, 16 Oct 2013 15:14:35 -0400 Subject: [PATCH] Fixed punctuation consistency --- apps/openmw/mwworld/class.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/openmw/mwworld/class.cpp b/apps/openmw/mwworld/class.cpp index c73662bb1..da98f99f1 100644 --- a/apps/openmw/mwworld/class.cpp +++ b/apps/openmw/mwworld/class.cpp @@ -134,12 +134,12 @@ namespace MWWorld void Class::setRemainingUsageTime (const Ptr& ptr, float duration) const { - throw std::runtime_error ("class does not support time-based uses."); + throw std::runtime_error ("class does not support time-based uses"); } float Class::getRemainingUsageTime (const Ptr& ptr) const { - throw std::runtime_error ("class does not support time-based uses."); + throw std::runtime_error ("class does not support time-based uses"); } std::string Class::getScript (const Ptr& ptr) const