Browse Source

fix armor piercing affix range (#2535)

pull/2539/head
qndel 5 years ago committed by GitHub
parent
commit
644d9dfc5c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      Source/items.cpp

4
Source/items.cpp

@ -1127,8 +1127,8 @@ void SaveItemAffix(ItemStruct &item, const PLStruct &affix)
if (!gbIsHellfire) {
if (power.type == IPL_TARGAC) {
power.param1 = 2 << power.param1;
power.param2 = 6 << power.param2;
power.param1 = 1 << power.param1;
power.param2 = 3 << power.param2;
}
}

Loading…
Cancel
Save