View Full Version : Unnecessary line in native library (Line: 2077)
Chuitox
07-27-2014, 02:54 PM
Hey,
So I was taking a look at the native library for Xenobot and saw this at line 2077:
local pos = Self.LookPos()
The variable is actually never used inside the function so I believe it's safe to say it should be removed
drac0ner
07-27-2014, 03:52 PM
Let's not forget line 944:
return (Creature:isPartyLeader() or
which should be:
return (self:isPartyLeader() or
ppgab
07-27-2014, 04:43 PM
And Container.GetAll() does not returns object but index only
Chuitox
07-27-2014, 06:52 PM
Let's not forget line 944:
return (Creature:isPartyLeader() or
which should be:
return (self:isPartyLeader() or
And containrt.getall doed not returns object but index only
Damn...
DarkstaR plx fix plx bro lolol
Chuitox
07-27-2014, 06:52 PM
You... sir... gotta be reaaaaaaaaaaaally bored!
Nah just trying to help :p
Powered by vBulletin® Version 4.2.5 Copyright © 2025 vBulletin Solutions Inc. All rights reserved.