mirror of
https://github.com/MightyPirates/OpenComputers.git
synced 2025-09-27 23:14:23 -04:00
Merge branch 'master' of github.com:MightyPirates/OpenComputers into MC1.7
This commit is contained in:
commit
b6b24c5780
@ -2,3 +2,4 @@
|
||||
# Each entry is a mapping of folder name to disk label.
|
||||
BetterShell=besh
|
||||
OpenIRC=irc
|
||||
TheDig=dig
|
@ -11,7 +11,7 @@ end
|
||||
local topic = args[1]
|
||||
for path in string.gmatch(os.getenv("MANPATH"), "[^:]+") do
|
||||
path = shell.resolve(fs.concat(path, topic), "man")
|
||||
if fs.exists(path) and not fs.isDirectory(path) then
|
||||
if path and fs.exists(path) and not fs.isDirectory(path) then
|
||||
os.execute(os.getenv("PAGER") .. " " .. path)
|
||||
os.exit()
|
||||
end
|
||||
|
@ -7,7 +7,7 @@ local unicode = require("unicode")
|
||||
local env = {
|
||||
EDITOR="/bin/edit",
|
||||
HOME="/home",
|
||||
MANPATH="/usr/man",
|
||||
MANPATH="/usr/man:.",
|
||||
PAGER="/bin/more",
|
||||
PATH="/bin:/usr/bin:/home/bin:.",
|
||||
PS1="# ",
|
||||
|
@ -7,5 +7,11 @@ object CreativeTab extends CreativeTabs(CreativeTabs.getNextID, "OpenComputers")
|
||||
|
||||
override def getIconItemStack = Blocks.case1.createItemStack()
|
||||
|
||||
override def displayAllReleventItems(list: java.util.List[_]) = {
|
||||
def add[T](list: java.util.List[T], value: Any) = list.add(value.asInstanceOf[T])
|
||||
super.displayAllReleventItems(list)
|
||||
Loot.disks.foreach(add(list, _))
|
||||
}
|
||||
|
||||
override def getTranslatedTabLabel = getTabLabel
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user