TempusMUD / Tempuscode

Codebase for TempusMUD
http://tempusmud.com/
Other
7 stars 6 forks source link

Zones shouldn't be kept in linked list #420

Closed dlowe-net closed 1 month ago

dlowe-net commented 10 years ago

Right now, zones are kept in a sorted linked list, which is kind of preposterous given the data access pattern. There should just be a flat 1000-element array of zone pointers. This will simplify a lot of code and speed up all those lookups.