Install Steam
login
|
language
简体中文 (Simplified Chinese)
繁體中文 (Traditional Chinese)
日本語 (Japanese)
한국어 (Korean)
ไทย (Thai)
Български (Bulgarian)
Čeština (Czech)
Dansk (Danish)
Deutsch (German)
Español - España (Spanish - Spain)
Español - Latinoamérica (Spanish - Latin America)
Ελληνικά (Greek)
Français (French)
Italiano (Italian)
Bahasa Indonesia (Indonesian)
Magyar (Hungarian)
Nederlands (Dutch)
Norsk (Norwegian)
Polski (Polish)
Português (Portuguese - Portugal)
Português - Brasil (Portuguese - Brazil)
Română (Romanian)
Русский (Russian)
Suomi (Finnish)
Svenska (Swedish)
Türkçe (Turkish)
Tiếng Việt (Vietnamese)
Українська (Ukrainian)
Report a translation problem
I've been working a lot on my server's mods as of late, so haven't had the chance to go back and bug fix B42 errors.
Please </3
inb4 there's an easier way and I'm just a dunce.
The issue is in the prerender function of Clipboard_UI.lua, specifically in this block:
function Clipboard_UI:prerender()
ISPanel.prerender(self)
if self.readOnly then
local px = self.character:getX()
local py = self.character:getY()
local cx = self.clipboard:getWorldItem():getX()
local cy = self.clipboard:getWorldItem():getY()
local dx = px - cx
local dy = py - cy
if dx * dx + dy * dy > 4 then
self:onClose()
end
end
end
Issues:
1. self.clipboard:getWorldItem() might return nil when the clipboard is stored (not in inventory).
2. Calling getX() on nil causes the error:
"attempted index: getX of non-table: null". Hope these details help!