From da094fc3fac76bceff6ee26f98f36ca456e44cd9 Mon Sep 17 00:00:00 2001 From: Curtis McEnroe Date: Fri, 4 Jan 2019 11:09:42 -0500 Subject: Fix map generation for old metadata discrepancies --- server.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server.c b/server.c index f90f369..ad9815b 100644 --- a/server.c +++ b/server.c @@ -312,7 +312,7 @@ static bool clientMap(const struct Client *client) { uint32_t tileX = ((mapX + x) % TileCols + TileCols) % TileCols; struct Meta meta = tileMeta(&tiles[tileY * TileRows + tileX]); - if (meta.createTime) { + if (meta.createTime > 1) { if (meta.createTime < map.min.createTime) { map.min.createTime = meta.createTime; } -- cgit 1.4.1 ='selected'>master dontfiles
summary refs log tree commit diff
path: root/bin/hnel.c (unfollow)
Commit message (Expand)Author
2019-01-13Add PS0June McEnroe
2019-01-13Change default ENV from cashrc to env.shJune McEnroe
2019-01-13Use colours in cash promptsJune McEnroe
2019-01-12Set PSlit like NetBSD shJune McEnroe
2019-01-12Install gnupg2 from pkgsrc and symlink gpgJune McEnroe
2019-01-12Reference cash builtin man pages in cash.1 SEE ALSOJune McEnroe
2019-01-12Restore cash builtin man page datesJune McEnroe
2019-01-12Use local libeditJune McEnroe
2019-01-12Replace libedit MakefileJune McEnroe
2019-01-11Import /usr/src/lib/libedit from NetBSD 8.0June McEnroe
2019-01-11Add PSlit for prompt escapesJune McEnroe
2019-01-11Don't make depend automaticallyJune McEnroe