Map Instancing

by Forum_account
An easy way to create multiple instances of a map. Each instance is put on its own z level.
ID:669559
 
BYOND Version:494
Operating System:Windows 7 Ultimate
Web Browser:Chrome 18.0.1025.152
Applies to:this library
Status: Open

Issue hasn't been assigned a status value.
If you have a mob which occupies multiple tiles it will be create as many times as the number of tiles it occupies when a map is instanced.
Thanks for reporting that. It should be an easy fix.
I can verify this occurrence as well.
So this never got fixed then?

edit wow first guess solved it

On line 173 in map-instancing.dm

change from

if(a.is_instanced())


to

if(a.is_instanced() && a.loc==t)