Skip to content

Commit

Permalink
And fix the build failing
Browse files Browse the repository at this point in the history
  • Loading branch information
SquidDev committed Apr 2, 2019
1 parent f9e13ca commit 7afc3e5
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 8 deletions.
6 changes: 2 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -268,16 +268,14 @@ task compressJson(dependsOn: jar) {

assemble.dependsOn compressJson

/*
curseforge {
apiKey = project.hasProperty('curseForgeApiKey') ? project.curseForgeApiKey : ''
project {
id = '282001'
releaseType = 'release'
changelog = "Release notes can be found on the GitHub repository (https://github.com/SquidDev-CC/CC-Tweaked/releases/tag/v${project.version})."
releaseType = 'beta'
changelog = "Release notes can be found on the GitHub repository (https://github.com/SquidDev-CC/CC-Tweaked/releases/tag/v${mc_version}-${mod_version})."
}
}
*/

publishing {
publications {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,11 +46,10 @@ public PocketServerComputer( World world, int computerID, String label, int inst

@Nullable
@Override
@Deprecated
public Entity getEntity()
{
Entity entity = m_entity;
if( entity == null || m_stack == null || entity.removed ) return null;
if( entity == null || m_stack == null || !entity.isAlive() ) return null;

if( entity instanceof EntityPlayer )
{
Expand Down
4 changes: 2 additions & 2 deletions src/main/resources/assets/computercraft/lang/es_es.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,8 @@
"upgrade.computercraft.wireless_modem_advanced.adjective": "ender",
"upgrade.computercraft.speaker.adjective": "ruidosa",

"chat.computercraft.wired_modem.peripheral_connected": "El periférico "%s" se conectó a la red",
"chat.computercraft.wired_modem.peripheral_disconnected": "El periférico "%s" se desconectó de la red",
"chat.computercraft.wired_modem.peripheral_connected": "El periférico \"%s\" se conectó a la red",
"chat.computercraft.wired_modem.peripheral_disconnected": "El periférico \"%s\" se desconectó de la red",

"gui.computercraft.config.computer_space_limit": "Límite de memoria de ordenadores (en bytes)",
"gui.computercraft.config.floppy_space_limit": "Límite de memoria de disquetes (en bytes)",
Expand Down

0 comments on commit 7afc3e5

Please sign in to comment.