This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <title>Github Api V3 test</title> | |
| <style type="text/css"> | |
| textarea{ | |
| height: 100%; | |
| } | |
| ul{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| local MOD_NAME = minetest.get_current_modname(); | |
| local MOD_PATH = minetest.get_modpath(MOD_NAME); | |
| local WORLD_PATH = minetest.get_worldpath(); | |
| if MOD_NAME ~= "wardrobe" then | |
| error("mod directory must be named 'wardrobe'"); | |
| end | |
| local armor_mod = false; | |
| if minetest.get_modpath("3d_armor") then armor_mod = true; end; |
NewerOlder