mirror of
				https://github.com/TES3MP/openmw-tes3mp.git
				synced 2025-10-31 13:56:45 +00:00 
			
		
		
		
	Fix typos in invalid spell effect warnings, clarify them
This commit is contained in:
		
							parent
							
								
									e8037473ca
								
							
						
					
					
						commit
						dec64a7fba
					
				
					 1 changed files with 4 additions and 4 deletions
				
			
		|  | @ -211,7 +211,7 @@ void ESMStore::validate() | |||
|             const ESM::MagicEffect* mgef = mMagicEffects.search(iter->mEffectID); | ||||
|             if (!mgef) | ||||
|             { | ||||
|                 Log(Debug::Verbose) << "Spell '" << spell.mId << "' has an an invalid effect (index " << iter->mEffectID << ") present, dropping it."; | ||||
|                 Log(Debug::Verbose) << "Spell '" << spell.mId << "' has an invalid effect (index " << iter->mEffectID << ") present. Dropping the effect."; | ||||
|                 iter = spell.mEffects.mList.erase(iter); | ||||
|                 changed = true; | ||||
|                 continue; | ||||
|  | @ -223,7 +223,7 @@ void ESMStore::validate() | |||
|                 { | ||||
|                     iter->mAttribute = -1; | ||||
|                     Log(Debug::Verbose) << ESM::MagicEffect::effectIdToString(iter->mEffectID) << | ||||
|                         " effect of spell '" << spell.mId << "'  has an attribute argument present, dropping it."; | ||||
|                         " effect of spell '" << spell.mId << "' has an attribute argument present. Dropping the argument."; | ||||
|                     changed = true; | ||||
|                 } | ||||
|             } | ||||
|  | @ -233,7 +233,7 @@ void ESMStore::validate() | |||
|                 { | ||||
|                     iter->mSkill = -1; | ||||
|                     Log(Debug::Verbose) << ESM::MagicEffect::effectIdToString(iter->mEffectID) << | ||||
|                         " effect of spell '" << spell.mId << "' has a skill argument present, dropping it."; | ||||
|                         " effect of spell '" << spell.mId << "' has a skill argument present. Dropping the argument."; | ||||
|                     changed = true; | ||||
|                 } | ||||
|             } | ||||
|  | @ -242,7 +242,7 @@ void ESMStore::validate() | |||
|                 iter->mSkill = -1; | ||||
|                 iter->mAttribute = -1; | ||||
|                 Log(Debug::Verbose) << ESM::MagicEffect::effectIdToString(iter->mEffectID) << | ||||
|                     " effect of spell '" << spell.mId << "' has argument(s) present, dropping them."; | ||||
|                     " effect of spell '" << spell.mId << "' has argument(s) present. Dropping the argument(s)."; | ||||
|                 changed = true; | ||||
|             } | ||||
| 
 | ||||
|  |  | |||
		Loading…
	
		Reference in a new issue