Overview
Comment: | Prevent double triggering of ARRIVED and DEPARTED messages. This fixes some test cases, although some test cases still fail. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
c2b53e3cd8a149a44af81538861ea298 |
User & Date: | user on 2021-03-07 00:56:26 |
Other Links: | manifest | tags |
Context
2021-03-07
| ||
03:53 | Make some changes for the case when both -a and -t are specified check-in: 4f7bcb6296 user: user tags: trunk | |
00:56 | Prevent double triggering of ARRIVED and DEPARTED messages. This fixes some test cases, although some test cases still fail. check-in: c2b53e3cd8 user: user tags: trunk | |
2021-03-06
| ||
06:04 | Add level exporting. (Importing is not implemented yet.) check-in: dd82c6e9b5 user: user tags: trunk | |
Changes
Modified exec.c from [44b8888e4d] to [f09a3b0fbd].
︙ | |||
1870 1871 1872 1873 1874 1875 1876 | 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 | - + + - + + - - - - + + + - + | objtrash(n); } else if(classes[o->class]->cflags&CF_COMPATIBLE) { if((o->oflags&(OF_MOVED|OF_MOVED2))==OF_MOVED) { o->oflags=(o->oflags|OF_MOVED2)&~OF_MOVED; send_message(VOIDLINK,n,MSG_MOVED,NVALUE(0),NVALUE(0),NVALUE(turn)); busy=1; } |
︙ |