bum0303 Posted October 23 Share Posted October 23 (edited) Well, I'm looking at the container_replica code, and it looks like there's something wrong with it. function Container:HasItemWithTag(tag, amount) if self.inst.components.container ~= nil then return self.inst.components.container:HasTag(tag, amount) -- There seems to be a problem.... elseif self.classified ~= nil and self.opener ~= nil then return self.classified:HasItemWithTag(tag, amount) else return amount <= 0, 0 end end It's written like this on the code. Is this normal? Edited October 23 by bum0303 Link to comment Share on other sites More sharing options...
Rickzzs Posted October 24 Share Posted October 24 Report it to the bug tracker. This function is never used though. Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now