summaryrefslogtreecommitdiff
path: root/src/map
AgeCommit message (Collapse)AuthorFilesLines
2014-02-07Name the terminal escapesBen Longbons1-3/+4
2014-02-06Wrap remaining FDs in a classBen Longbons9-108/+118
2014-02-04Convert fd to Session* where meaningfulBen Longbons16-1828/+1823
2014-01-26Also do db/const.txt and data/resnametable.txtv14.1.27Ben Longbons8-23/+39
2014-01-25Implement unified config parsing (mostly)Ben Longbons28-373/+248
2014-01-20Implement core formatterBen Longbons1-1/+0
2014-01-06Fix flex/bison interaction properlyBen Longbons2-7/+1
2013-12-28fix log numberingBen Longbons1-1/+1
2013-12-24Add non-indenting indenter for C++Ben Longbons1-0/+1
Fix a bunch of bugs that none of me noticed before.
2013-12-23Implement yacc formattingBen Longbons1-1/+1
2013-12-23Make a formatter for lex filesBen Longbons1-0/+1
2013-12-21fix travis errorsBen Longbons1-1/+1
2013-12-21Add mapexit as a script commandBen Longbons1-0/+9
It's not safe to call GM commands without an attached player.
2013-12-06Add basic source formatting toolsBen Longbons34-284/+284
2013-12-01Add some debug printers for scriptsBen Longbons1-0/+56
2013-11-24Do not consume components if casting aborts due to hidev13.11.24Ben Longbons1-2/+2
2013-11-15Another step towards proper header orderingBen Longbons25-25/+36
2013-11-15Fix fingering mapBen Longbons1-2/+3
2013-11-15Allow setting class directly from a scriptBen Longbons1-0/+3
2013-11-15Use new IO classesBen Longbons11-107/+95
2013-11-09Fixes issue with getequipid(equip_arrow)wushin1-1/+2
2013-10-24Only show MOTD onceBen Longbons3-1/+4
2013-10-24Show level of GM commands in @helpBen Longbons1-2/+15
2013-10-24Give better errors for too low GM levelBen Longbons1-9/+21
2013-10-24Show MOTD after GUI is createdBen Longbons3-14/+19
2013-10-22Ignore hidden GMs when checking users in an areaBen Longbons1-1/+5
2013-10-20Fix crash on synthetic init gm commandsBen Longbons1-1/+4
2013-10-19Rewrite @command dispatch and helpBen Longbons3-1914/+1419
2013-10-18Fix totally bogus status_option magic functionBen Longbons1-1/+1
2013-10-17Add @charkiller command for symmetryBen Longbons1-0/+35
2013-10-17Allow @hide to persist across logout/loginBen Longbons1-1/+14
Also document why the same can't be done for @invisible
2013-10-16Flush GM log after every single freaking log entryBen Longbons1-0/+1
Oh well, I guess it's still slightly better than reopening the file all the time ... There's still a bug in our cron scripts if no one uses a GM command in the first few minutes of a new month.
2013-10-15Use config for internal server userid/passwd instead of accounts.txtBen Longbons2-3/+3
This requires updated config files in the data repo.
2013-10-12Actually kick the player when their sex is changed by a scriptBen Longbons1-10/+0
2013-10-12Disallow unchecked being castsBen Longbons17-333/+306
Despite the fact that that's what the code always did, it was sometimes wrong.
2013-10-10Enumify sexBen Longbons10-32/+29
It's amazing some of this code ever worked ...
2013-10-05Remove direct packet buffer item assignments (not clones)Ben Longbons1-1/+2
2013-10-05Remove owning slicesBen Longbons4-15/+9
They were hardly ever used, hid errors, and were obsoleted by baseful x'es.
2013-10-05Split string header into piecesBen Longbons38-12/+128
2013-10-02Make sure we don't log after the log is closed.Ben Longbons1-2/+3
2013-10-02Remove asserts in npc_checknearv13.10.2Ben Longbons1-2/+5
Somebody is calling this with an invalid ID somewhere. I really need to get the pointer-hoisting done ...
2013-09-30Fix some build bugs in exotic configurationsBen Longbons1-1/+1
2013-09-30Fix bug in drop order assignmentBen Longbons1-3/+21
Originally, there was a bug that incorrectly assigned second and third. But when I fixed that I introduced this bug that incorrectly assigned all.
2013-09-29Fix warning in magic status poppingBen Longbons1-0/+1
2013-09-29Fix an old warning related to existing magic when a player logs inBen Longbons1-0/+6
2013-09-29Remove logging of failed whispersBen Longbons1-5/+4
Even though ordinary whispers were never logged, there were still concerns about privacy.
2013-09-29Silence a warning for temporary NPCsBen Longbons1-0/+2
2013-09-29Fix bug where all monsters had neutral elementBen Longbons1-1/+1
2013-09-28Fix bug where you can turn any direction but rightBen Longbons1-4/+18
2013-09-28Fixing path findingStefan Dombrowski1-1/+1
The bitwise And with 0x8ff had mapped different tiles to the same index. Closes #5.