Skip to content

Commit 79dbafc

Browse files
committedJul 18, 2016
Nyancat: Fix texture names
1 parent 1a2eb89 commit 79dbafc

File tree

6 files changed

+9
-8
lines changed

6 files changed

+9
-8
lines changed
 

Diff for: ‎mods/nyancat/README.txt

+4-4
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Everything not listed in here:
2323
Copyright (C) 2010-2012 celeron55, Perttu Ahola <celeron55@gmail.com>
2424

2525
VanessaE (WTFPL):
26-
default_nc_back.png
27-
default_nc_front.png
28-
default_nc_rb.png
29-
default_nc_side.png
26+
nyancat_front.png
27+
nyancat_back.png
28+
nyancat_side.png
29+
nyancat_rainbow.png

Diff for: ‎mods/nyancat/init.lua

+5-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
minetest.register_node("nyancat:nyancat", {
22
description = "Nyan Cat",
3-
tiles = {"default_nc_side.png", "default_nc_side.png", "default_nc_side.png",
4-
"default_nc_side.png", "default_nc_back.png", "default_nc_front.png"},
3+
tiles = {"nyancat_side.png", "nyancat_side.png", "nyancat_side.png",
4+
"nyancat_side.png", "nyancat_back.png", "nyancat_front.png"},
55
paramtype2 = "facedir",
66
groups = {cracky = 2},
77
is_ground_content = false,
@@ -12,8 +12,9 @@ minetest.register_node("nyancat:nyancat", {
1212
minetest.register_node("nyancat:nyancat_rainbow", {
1313
description = "Nyan Cat Rainbow",
1414
tiles = {
15-
"default_nc_rb.png^[transformR90", "default_nc_rb.png^[transformR90",
16-
"default_nc_rb.png", "default_nc_rb.png"
15+
"nyancat_rainbow.png^[transformR90",
16+
"nyancat_rainbow.png^[transformR90",
17+
"nyancat_rainbow.png"
1718
},
1819
paramtype2 = "facedir",
1920
groups = {cracky = 2},
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)
Please sign in to comment.