1
0
mirror of https://github.com/vcmi/vcmi.git synced 2025-11-29 23:07:48 +02:00

1.Fixes for RazeStructures net packs.

2.Support for Pyramid. Unfortunately untested entirely as combats won't work on my system.
This commit is contained in:
DjWarmonger
2009-09-24 17:54:02 +00:00
parent 9a1669b926
commit 55925e0eea
12 changed files with 122 additions and 9 deletions

View File

@@ -2044,7 +2044,7 @@ bool CGameHandler::razeStructure (si32 tid, si32 bid)
RazeStructures rs;
rs.tid = tid;
rs.bid.insert(bid);
rs.builded = t->destroyed + 1; //define TRUE FALSE?
rs.destroyed = t->destroyed + 1;
sendAndApply(&rs);
return true;
}