mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-20 07:53:51 +00:00
[Client] Use protected member instead local variable
This commit is contained in:
parent
25fef1a7b8
commit
8128a5c39c
1 changed files with 1 additions and 1 deletions
|
@ -17,7 +17,7 @@ namespace mwmp
|
||||||
public:
|
public:
|
||||||
virtual void Do(WorldPacket &packet, WorldEvent &event)
|
virtual void Do(WorldPacket &packet, WorldEvent &event)
|
||||||
{
|
{
|
||||||
MWWorld::CellStore *ptrCellStore = Main::get().getCellController()->getCellStore(event.cell);
|
ptrCellStore = Main::get().getCellController()->getCellStore(event.cell);
|
||||||
|
|
||||||
if (!ptrCellStore) return;
|
if (!ptrCellStore) return;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue