Merge pull request #2788 from Capostrophic/pickup

Make sure non-carriable light sources can't be picked up
pull/2791/head
Alexei Dobrohotov 4 years ago committed by GitHub
commit 8fc56e4614
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -732,7 +732,8 @@ namespace MWGui
&& (type != typeid(ESM::Potion).name()))
return;
if (object.getClass().getName(object) == "") // objects without name presented to user can never be picked up
// An object that can be picked up must have a tooltip.
if (!object.getClass().hasToolTip(object))
return;
int count = object.getRefData().getCount();

Loading…
Cancel
Save