summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2013-05-22Don't crash when creating a new accountBen Longbons1-0/+1
2013-05-18Fix silly bugs in the previous patchBen Longbons2-0/+4
2013-05-18Tweak a little memory management in char-serverBen Longbons26-1334/+826
2013-05-15Alter memory management in login serverBen Longbons6-670/+571
2013-05-15Add a dumb_ptr template for transition purposesBen Longbons3-16/+145
2013-05-15Merge remote-tracking branch 'origin/master' into testBen Longbons1-1/+1
2013-05-15Fix network bug introduced in my original refactoringBen Longbons1-1/+1
2013-05-15Fix magic attack overridesBen Longbons1-2/+1
2013-05-13pc_gainexp was now unusedBen Longbons2-12/+0
2013-05-14Add SHAREXP distinction, create UNKNOWNXP defaultFreeyorp6-8/+16
Previously, KILLXP was being set as the catchall, which caused false positives for XP sharing. Update documentation accordingly. log version incremented to 4.
2013-05-01Really fix the stupid timers finallyBen Longbons1-0/+6
I was operating under sensible assumptions when I added those asserts. Unfortunately, the code wasn't.
2013-04-30Restore fakenpcname script commandBen Longbons2-2/+24
Closes: #2
2013-04-28Fix some oversized writesBen Longbons2-6/+6
2013-04-28Merge branch 'master' into testBen Longbons2-25/+14
Conflicts: src/char/char.cpp src/common/socket.cpp src/map/map.cpp
2013-04-27Unbreak skill timersBen Longbons1-52/+58
2013-04-27Fix size of packet sent on IP bansBen Longbons1-1/+2
Also fixed in eAthena r5860.
2013-04-27Enumize ItemLookBen Longbons12-76/+124
2013-04-27Force timers to be managedBen Longbons20-284/+307
2013-04-17Point README to the wiki, which is actually kept updatedBen Longbons1-32/+2
2013-04-13Enable tcp_thin socket optimizations on LinuxMadCamel1-2/+11
See kernel/Documentation/networking/tcp-thin.txt These TCP optimizations were designed for the specific purpose of low latency TCP gameservers and can help reduce latency in adverse network conditions.
2013-04-13Removed sorting of character data file. It accomplished nothing except ↵MadCamel1-24/+4
making it look pretty, and chewed an inordinate amount of CPU. Also inlined mmo_char_tostr and set things up so players end up in tulimshar if their map save location is bad.
2013-04-13Fix error in "return" script commandBen Longbons1-4/+7
2013-04-13Fix the bug with chest armorBen Longbons2-4/+3
2013-04-11Stupid fix for the x32 patchBen Longbons1-1/+1
2013-04-11Adjust travis for native amd64 buildsBen Longbons1-7/+1
This (mostly) reverts commit af30bb8316849e96fca2764738d0d3e0060c9be7.
2013-04-11Also implement x32 supportBen Longbons24-421/+502
2013-04-09Native amd64 supportBen Longbons9-28/+22
2013-04-09Change script call/ret code to avoid evil castingBen Longbons2-8/+46
2013-04-06Figure out what that code was supposed to doBen Longbons1-10/+5
I talked with the eathena people about this. It was probably never executed anyway - it indicates mob_db errors.
2013-04-06Add initializer_list support to Map wrapperBen Longbons1-0/+4
2013-04-03Rename makefile and provide a way to not do backupsBen Longbons1-1/+2
2013-04-02Fail sooner when the impossible things happenBen Longbons4-17/+19
2013-03-30Keep (numbered) backups when installing filesBen Longbons1-1/+1
There's no such thing as being too paranoid, and this has turned out to be useful in practice.
2013-03-26Quick hack to background gzip, real fix in testingBen Longbons1-1/+1
2013-03-21Restore shop script functionBen Longbons1-1/+19
2013-03-11Fix travis deps for undocumented change to amd64Ben Longbons1-3/+7
2013-03-11Fix regenBen Longbons1-1/+1
2013-03-06Fix stupid crash on bad @commandBen Longbons1-1/+1
2013-03-05Remove atcommand_info's first (redundant) entry☈king3-404/+183
This was an experimental in pair programming. :)
2013-03-01Keep a few backup copies of the DBBen Longbons1-2/+16
2013-03-01Convince skills to workBen Longbons8-84/+67
2013-02-27Fix crash in party savingBen Longbons1-1/+1
2013-02-27Reimplement CREATE/RECREATE and allow NULL on size 0Ben Longbons1-4/+23
2013-02-25Fix walk bug exposed by assertionBen Longbons1-0/+3
2013-02-23Fix buffer overflow due to off-by-one errorBen Longbons1-3/+6
2013-02-23Replace struct dbt with typesafe std::map wrappersBen Longbons19-1145/+433
Also fix broken save/accreg.txt reading.
2013-02-20Strictify map cellsBen Longbons16-425/+224
Also fix a small but major bug in map_randfreecell.
2013-02-16Rotate logs in backgroundBen Longbons3-10/+17
Also reenable the critical bonus effect.
2013-02-12Replace mt_rand with <random>Ben Longbons28-1675/+458
Also add some utility methods and classes.
2013-02-12Strictify timersBen Longbons37-3382/+2005