Browse Source

fix secluded crash (#1635)

pull/1638/head
qndel 5 years ago committed by GitHub
parent
commit
6be6499631
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      Source/objects.cpp

2
Source/objects.cpp

@ -4032,7 +4032,7 @@ bool OperateShrineSecluded(int pnum)
if (pnum != myplr)
return true;
std::fill(&automapview[0][0], &automapview[DMAXX][DMAXY], true);
std::fill(&automapview[0][0], &automapview[0][0] + sizeof(automapview), true);
InitDiabloMsg(EMSG_SHRINE_SECLUDED);

Loading…
Cancel
Save