From ecd0b43abe5f138b3d0f8bc8e85cf1e6829f7e4d Mon Sep 17 00:00:00 2001 From: Kayne Ruse Date: Fri, 14 Nov 2014 10:05:00 +1100 Subject: [PATCH] Corrected comments Because this file was originally copied from the map API, there were references to the map. I've corrected this. --- server/rooms/room_system_api.cpp | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/server/rooms/room_system_api.cpp b/server/rooms/room_system_api.cpp index 35c041a..d0d47e0 100644 --- a/server/rooms/room_system_api.cpp +++ b/server/rooms/room_system_api.cpp @@ -21,14 +21,14 @@ */ #include "room_system_api.hpp" -//all map API headers +//all room API headers #include "room_api.hpp" #include "room_manager_api.hpp" //useful "globals" //... -//This mimics linit.c to create a nested collection of all map modules. +//This mimics linit.c to create a nested collection of all room modules. static const luaL_Reg funcs[] = { {nullptr, nullptr} }; @@ -36,7 +36,6 @@ static const luaL_Reg funcs[] = { static const luaL_Reg libs[] = { {"Room", openRoomAPI}, {"RoomManager", openRoomManagerAPI}, -// {"TileSheet", openTileSheetAPI}, {nullptr, nullptr} }; @@ -53,4 +52,4 @@ int openRoomSystemAPI(lua_State* L) { lua_setfield(L, -2, lib->name); } return 1; -} \ No newline at end of file +}