Minor cleanups
* Resolved some miscellaneous typos.
This commit is contained in:
parent
7a1a76a9a9
commit
1ae1e312da
@ -16,7 +16,7 @@
|
||||
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
#
|
||||
###########################################################################
|
||||
# Custom Achievement Database
|
||||
# Pre-Renewal Achievement Database
|
||||
###########################################################################
|
||||
#
|
||||
# Achievement Settings
|
||||
|
@ -16,7 +16,7 @@
|
||||
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
#
|
||||
###########################################################################
|
||||
# Custom Achievement Database
|
||||
# Renewal Achievement Database
|
||||
###########################################################################
|
||||
#
|
||||
# Achievement Settings
|
||||
|
@ -4752,8 +4752,8 @@ void do_init_npc(void){
|
||||
npc_market_fromsql();
|
||||
#endif
|
||||
|
||||
timer_event_ers = ers_new(sizeof(struct timer_event_data),"npc.c::timer_event_ers",ERS_OPT_NONE);
|
||||
npc_sc_display_ers = ers_new(sizeof(struct sc_display_entry), "npc.c:npc_sc_display_ers", ERS_OPT_NONE);
|
||||
timer_event_ers = ers_new(sizeof(struct timer_event_data),"npc.cpp::timer_event_ers",ERS_OPT_NONE);
|
||||
npc_sc_display_ers = ers_new(sizeof(struct sc_display_entry), "npc.cpp:npc_sc_display_ers", ERS_OPT_NONE);
|
||||
|
||||
// process all npc files
|
||||
ShowStatus("Loading NPCs...\r");
|
||||
|
@ -21585,8 +21585,8 @@ void do_init_skill(void)
|
||||
skillunit_db = idb_alloc(DB_OPT_BASE);
|
||||
skillusave_db = idb_alloc(DB_OPT_RELEASE_DATA);
|
||||
bowling_db = idb_alloc(DB_OPT_BASE);
|
||||
skill_unit_ers = ers_new(sizeof(struct skill_unit_group),"skill.c::skill_unit_ers",ERS_CACHE_OPTIONS);
|
||||
skill_timer_ers = ers_new(sizeof(struct skill_timerskill),"skill.c::skill_timer_ers",ERS_CACHE_OPTIONS);
|
||||
skill_unit_ers = ers_new(sizeof(struct skill_unit_group),"skill.cpp::skill_unit_ers",ERS_CACHE_OPTIONS);
|
||||
skill_timer_ers = ers_new(sizeof(struct skill_timerskill),"skill.cpp::skill_timer_ers",ERS_CACHE_OPTIONS);
|
||||
|
||||
ers_chunk_size(skill_unit_ers, 150);
|
||||
ers_chunk_size(skill_timer_ers, 150);
|
||||
|
@ -98,7 +98,7 @@ void storage_sortitem(struct item* items, unsigned int size)
|
||||
|
||||
/**
|
||||
* Initiate storage module
|
||||
* Called from map.c::do_init()
|
||||
* Called from map.cpp::do_init()
|
||||
*/
|
||||
void do_init_storage(void)
|
||||
{
|
||||
@ -110,7 +110,7 @@ void do_init_storage(void)
|
||||
/**
|
||||
* Destroy storage module
|
||||
* @author : [MC Cameri]
|
||||
* Called from map.c::do_final()
|
||||
* Called from map.cpp::do_final()
|
||||
*/
|
||||
void do_final_storage(void)
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user