Pastebin

New pastes are no longer accepted · Stats

Latest Pastes

DelChest Bugged

		void DelChest(int x, int y)
		{
			for (std::vector<Chest>::iterator i = chests.begin(); i != chests.end(); ++i)
			{
				if (i->x != x || i->y != y)
				{
					continue;
				}

                chests.erase(i);
                return;
			}
		}