(Java Minecraft 1.13.2) Game crashes after raycasting through end gateway Planned maintenance scheduled April 23, 2019 at 23:30 UTC (7:30pm US/Eastern) Announcing the arrival of Valued Associate #679: Cesar Manara Unicorn Meta Zoo #1: Why another podcast?Minecraft crashes after logging in: A fatal error has been detected by the Java Runtime EnvironmentMinecraft won't run after updating Java?Minecraft Spigot Java Crashes at random timesMinecraft Crashes After Mod Installationminecraft forge/java 1.8 error (minecraft crashes)How do I make a true ghost sign?How to fix a broken End Gateway in Minecraft Survival?Fixing Remote End Gateway Portals in Minecraft Survival 1.13+Make hole with snowballs in Minecraft 1.13.2Minecraft 1.13.2 Advancement pack not loading

Trademark violation for app?

In musical terms, what properties are varied by the human voice to produce different words / syllables?

What does Turing mean by this statement?

macOS: Name for app shortcut screen found by pinching with thumb and three fingers

How many time has Arya actually used Needle?

Flight departed from the gate 5 min before scheduled departure time. Refund options

Tannaka duality for semisimple groups

One-one communication

How can I set the aperture on my DSLR when it's attached to a telescope instead of a lens?

Do wooden building fires get hotter than 600°C?

If the probability of a dog barking one or more times in a given hour is 84%, then what is the probability of a dog barking in 30 minutes?

Misunderstanding of Sylow theory

Has negative voting ever been officially implemented in elections, or seriously proposed, or even studied?

What does 丫 mean? 丫是什么意思?

Co-worker has annoying ringtone

How to compare two different files line by line in unix?

How to save space when writing equations with cases?

Putting class ranking in CV, but against dept guidelines

An adverb for when you're not exaggerating

Most bit efficient text communication method?

Should a wizard buy fine inks every time he want to copy spells into his spellbook?

Lagrange four-squares theorem --- deterministic complexity

How were pictures turned from film to a big picture in a picture frame before digital scanning?

How does the math work when buying airline miles?



(Java Minecraft 1.13.2) Game crashes after raycasting through end gateway



Planned maintenance scheduled April 23, 2019 at 23:30 UTC (7:30pm US/Eastern)
Announcing the arrival of Valued Associate #679: Cesar Manara
Unicorn Meta Zoo #1: Why another podcast?Minecraft crashes after logging in: A fatal error has been detected by the Java Runtime EnvironmentMinecraft won't run after updating Java?Minecraft Spigot Java Crashes at random timesMinecraft Crashes After Mod Installationminecraft forge/java 1.8 error (minecraft crashes)How do I make a true ghost sign?How to fix a broken End Gateway in Minecraft Survival?Fixing Remote End Gateway Portals in Minecraft Survival 1.13+Make hole with snowballs in Minecraft 1.13.2Minecraft 1.13.2 Advancement pack not loading



.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








0















I've made a datapack for an 'enderwand' which allows you to teleport using raycasting. Everything works fine except I've put exceptions so the ray goes through water, lava, and the end gateway, however when I attempt to go through an end gateway my game freezes and I have to close it. Does anyone know why this is?
Here's my recursive raycasting function:



execute if block ~ ~ ~ minecraft:air positioned ^ ^ ^1 run function enderwand:raycast
execute if block ~ ~ ~ minecraft:water positioned ^ ^ ^1 run function enderwand:raycast
execute if block ~ ~ ~ minecraft:lava positioned ^ ^ ^1 run function enderwand:raycast
execute if block ~ ~ ~ minecraft:end_gateway positioned ^ ^ ^ run function enderwand:raycast
execute unless block ~ ~ ~ minecraft:end_gateway unless block ~ ~ ~ minecraft:lava unless block ~ ~ ~ minecraft:water unless block ~ ~ ~ minecraft:air positioned ^ ^ ^ as @s run function enderwand:enderwandtp


And here's the teleportation function enderwand:enderwandtp :



 tp @s ~ ~1 ~
scoreboard players set @s ewReload 80


where ewReload is a scoreboard keeping track of someone's reload. The water and lava exceptions work fine.










share|improve this question






















  • the only thing i can imagine is that the game attempts to port you normally, but can't do so because of your command.

    – EarthToAccess
    30 mins ago

















0















I've made a datapack for an 'enderwand' which allows you to teleport using raycasting. Everything works fine except I've put exceptions so the ray goes through water, lava, and the end gateway, however when I attempt to go through an end gateway my game freezes and I have to close it. Does anyone know why this is?
Here's my recursive raycasting function:



execute if block ~ ~ ~ minecraft:air positioned ^ ^ ^1 run function enderwand:raycast
execute if block ~ ~ ~ minecraft:water positioned ^ ^ ^1 run function enderwand:raycast
execute if block ~ ~ ~ minecraft:lava positioned ^ ^ ^1 run function enderwand:raycast
execute if block ~ ~ ~ minecraft:end_gateway positioned ^ ^ ^ run function enderwand:raycast
execute unless block ~ ~ ~ minecraft:end_gateway unless block ~ ~ ~ minecraft:lava unless block ~ ~ ~ minecraft:water unless block ~ ~ ~ minecraft:air positioned ^ ^ ^ as @s run function enderwand:enderwandtp


And here's the teleportation function enderwand:enderwandtp :



 tp @s ~ ~1 ~
scoreboard players set @s ewReload 80


where ewReload is a scoreboard keeping track of someone's reload. The water and lava exceptions work fine.










share|improve this question






















  • the only thing i can imagine is that the game attempts to port you normally, but can't do so because of your command.

    – EarthToAccess
    30 mins ago













0












0








0








I've made a datapack for an 'enderwand' which allows you to teleport using raycasting. Everything works fine except I've put exceptions so the ray goes through water, lava, and the end gateway, however when I attempt to go through an end gateway my game freezes and I have to close it. Does anyone know why this is?
Here's my recursive raycasting function:



execute if block ~ ~ ~ minecraft:air positioned ^ ^ ^1 run function enderwand:raycast
execute if block ~ ~ ~ minecraft:water positioned ^ ^ ^1 run function enderwand:raycast
execute if block ~ ~ ~ minecraft:lava positioned ^ ^ ^1 run function enderwand:raycast
execute if block ~ ~ ~ minecraft:end_gateway positioned ^ ^ ^ run function enderwand:raycast
execute unless block ~ ~ ~ minecraft:end_gateway unless block ~ ~ ~ minecraft:lava unless block ~ ~ ~ minecraft:water unless block ~ ~ ~ minecraft:air positioned ^ ^ ^ as @s run function enderwand:enderwandtp


And here's the teleportation function enderwand:enderwandtp :



 tp @s ~ ~1 ~
scoreboard players set @s ewReload 80


where ewReload is a scoreboard keeping track of someone's reload. The water and lava exceptions work fine.










share|improve this question














I've made a datapack for an 'enderwand' which allows you to teleport using raycasting. Everything works fine except I've put exceptions so the ray goes through water, lava, and the end gateway, however when I attempt to go through an end gateway my game freezes and I have to close it. Does anyone know why this is?
Here's my recursive raycasting function:



execute if block ~ ~ ~ minecraft:air positioned ^ ^ ^1 run function enderwand:raycast
execute if block ~ ~ ~ minecraft:water positioned ^ ^ ^1 run function enderwand:raycast
execute if block ~ ~ ~ minecraft:lava positioned ^ ^ ^1 run function enderwand:raycast
execute if block ~ ~ ~ minecraft:end_gateway positioned ^ ^ ^ run function enderwand:raycast
execute unless block ~ ~ ~ minecraft:end_gateway unless block ~ ~ ~ minecraft:lava unless block ~ ~ ~ minecraft:water unless block ~ ~ ~ minecraft:air positioned ^ ^ ^ as @s run function enderwand:enderwandtp


And here's the teleportation function enderwand:enderwandtp :



 tp @s ~ ~1 ~
scoreboard players set @s ewReload 80


where ewReload is a scoreboard keeping track of someone's reload. The water and lava exceptions work fine.







minecraft minecraft-commands






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked 47 mins ago









Nik3141Nik3141

14910




14910












  • the only thing i can imagine is that the game attempts to port you normally, but can't do so because of your command.

    – EarthToAccess
    30 mins ago

















  • the only thing i can imagine is that the game attempts to port you normally, but can't do so because of your command.

    – EarthToAccess
    30 mins ago
















the only thing i can imagine is that the game attempts to port you normally, but can't do so because of your command.

– EarthToAccess
30 mins ago





the only thing i can imagine is that the game attempts to port you normally, but can't do so because of your command.

– EarthToAccess
30 mins ago










0






active

oldest

votes












Your Answer








StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "41"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);

else
createEditor();

);

function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
noCode: true, onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);



);













draft saved

draft discarded


















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fgaming.stackexchange.com%2fquestions%2f349239%2fjava-minecraft-1-13-2-game-crashes-after-raycasting-through-end-gateway%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown

























0






active

oldest

votes








0






active

oldest

votes









active

oldest

votes






active

oldest

votes















draft saved

draft discarded
















































Thanks for contributing an answer to Arqade!


  • Please be sure to answer the question. Provide details and share your research!

But avoid


  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.

To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fgaming.stackexchange.com%2fquestions%2f349239%2fjava-minecraft-1-13-2-game-crashes-after-raycasting-through-end-gateway%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

ParseJSON using SSJSUsing AMPscript with SSJS ActivitiesHow to resubscribe a user in Marketing cloud using SSJS?Pulling Subscriber Status from Lists using SSJSRetrieving Emails using SSJSProblem in updating DE using SSJSUsing SSJS to send single email in Marketing CloudError adding EmailSendDefinition using SSJS

Кампала Садржај Географија Географија Историја Становништво Привреда Партнерски градови Референце Спољашње везе Мени за навигацију0°11′ СГШ; 32°20′ ИГД / 0.18° СГШ; 32.34° ИГД / 0.18; 32.340°11′ СГШ; 32°20′ ИГД / 0.18° СГШ; 32.34° ИГД / 0.18; 32.34МедијиПодациЗванични веб-сајту

19. јануар Садржај Догађаји Рођења Смрти Празници и дани сећања Види још Референце Мени за навигацијуу