- The gnome engineers have finally repaired the computers of DeeprunTram, and now both trams travel properly between stations.
- The pets try hard to learn the paths. For example, they will now properly follow their masters on bridges.
- There are now 2 types of transporters: local transporters (elevators, platforms) and global transporters (ships, zeppelins).
- Some obsolete methods have been removed.
- Some methods have been rewritten to make room for the final phase.
Mostly backported from TC.
Changed table format (mapID in lower 16 bit, areaID in higer 16 bit of data field).
Added CREATURE_SPAWN and GAMEOBJECT_SPAWN disable types.
Using DB script command 34 (TERMINATE_CONDITION) was triggering an array out of
bounds access when debug logging was on, causing the server to crash. The array
is accessed with ConditionSource as index, but there was no corresponding string
for CONDITION_FROM_RESERVED_1. As a result, the array was missing one string and
accessing the array with the highest possible index, CONDITION_FROM_DBSCRIPTS,
accessed the array out of bounds.
Many thanks to @Schmoozerd for debugging and suggesting a fix and to @scotty0100 for patiently running many tests!
(c2604) @schmoozerd
* Move Weather handling from World to Map class
* Add new Map::SetWeather function to force a weather for a zone
* Allow .wchange command to also create Thunderstorm or BlackRain
(c2609) @cala
- Remove enums irrelevant for Classic
- Fixe a few errors in auto merge from previous backport
- Change packet formatting to Classic structure
Thanks @stfx for his help and reviewing this fix and @laizerox for research