From 8f5c0feb45555fc92578936a314b1d3a3422c60d Mon Sep 17 00:00:00 2001
From: orwell96 <mono96.mml@gmail.com>
Date: Sun, 4 Dec 2016 23:18:28 +0100
Subject: fix bug about seats on wagon sometimes a single character can cause
 great mess...

---
 advtrains.zip | Bin 1484903 -> 1484902 bytes
 wagons.lua    |   2 +-
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/advtrains.zip b/advtrains.zip
index c5777f8..4d966b4 100644
Binary files a/advtrains.zip and b/advtrains.zip differ
diff --git a/wagons.lua b/wagons.lua
index 8348353..6b3780a 100644
--- a/wagons.lua
+++ b/wagons.lua
@@ -427,7 +427,7 @@ function wagon:get_off_plr(pname)
 	end
 end
 function wagon:get_seatno(pname)
-	for no, cont in ipairs(self.seatp) do
+	for no, cont in pairs(self.seatp) do
 		if cont==pname then
 			return no
 		end
-- 
cgit v1.2.3