docs: Fix callout types

This commit is contained in:
Oliver
2025-06-21 13:16:32 +02:00
parent 3664832324
commit c33cf8dabc
10 changed files with 12 additions and 12 deletions

View File

@@ -9,7 +9,7 @@ We use [Semantic Versioning](https://semver.org/) (Semver) for versioning.
The version is structured as follows: `major.minor.patch.<build id>`. The build id is optional and is only used for
development builds.
!!! warning
!!!warning
This versioning system is not getting used yet. We will start applying the rules in the version 3.0.0 of all plugins.
!!!

View File

@@ -5,7 +5,7 @@ order: 300
# Java SDK
!!! danger
!!!danger
The FancyAnalytics platform is still in development. Expect breaking changes in the future.
!!!
@@ -46,7 +46,7 @@ dependencies {
</dependency>
```
!!! warning
!!!warning
Make sure to shade the API into your app! You can use the [Shade plugin](https://imperceptiblethoughts.com/shadow/) for this.
!!!

View File

@@ -5,7 +5,7 @@ order: 400
# Minecraft Plugins
!!! danger
!!!danger
The FancyAnalytics platform is still in development. Expect breaking changes in the future.
!!!
@@ -47,7 +47,7 @@ dependencies {
</dependency>
```
!!! warning
!!!warning
Make sure to shade the API into your plugin! You can use the [Shade plugin](https://imperceptiblethoughts.com/shadow/) for this.
!!!

View File

@@ -5,7 +5,7 @@ order: 500
# Minecraft Servers
!!! danger
!!!danger
The FancyAnalytics platform is still in development. Expect breaking changes in the future.
!!!

View File

@@ -6,7 +6,7 @@ visibility: hidden
# REST API
!!! danger
!!!danger
The FancyAnalytics platform is still in development. Expect breaking changes in the future.
!!!

View File

@@ -4,7 +4,7 @@ icon: info
---
# Getting started
!!! danger
!!!danger
Be aware, that only Paper and Folia is supported, but the plugin should work on any of its forks (like Purpur or Pufferfish). Spigot, Bukkit, Sponge and Fabric is not supported.
!!!

View File

@@ -4,7 +4,7 @@ icon: info
---
# Getting started
!!! danger
!!!danger
Be aware, that only Paper and Folia is supported, but the plugin should work on any of its forks (like Purpur or Pufferfish). Spigot, Bukkit, Sponge and Fabric is not supported.
!!!

View File

@@ -69,7 +69,7 @@ To let FancyNpcs handle the NPC, you need to register it. FancyNpcs will take ca
FancyNpcsPlugin.get().getNpcManager().registerNpc(npc);
```
!!! warning
!!!warning
Do not register npcs in the first few seconds after the server has started. You need to wait at least 10 seconds before registering npcs. Otherwise, the npcs will not get registered correctly.
You can also listen to the `NpcsLoadedEvent` to know when you can register npcs.
!!!

View File

@@ -4,7 +4,7 @@ icon: info
---
# Getting started
!!! danger
!!!danger
Be aware, that only Paper and Folia is supported, but the plugin should work on any of its forks (like Purpur or Pufferfish). Spigot, Bukkit, Sponge and Fabric is not supported.
!!!

View File

@@ -55,7 +55,7 @@ Example: `/npc action (npc) (trigger) add player_command warp spawn`
Executes a command as the player who triggered the action, but with operator privileges. This action is useful for performing player-specific operations that require operator permissions.
!!! warning
!!!warning
FancyNpcs will gives the player operator permissions for the duration of the command execution. This means that the player will have access to all commands and permissions during that time.
This can be a security risk if not used carefully, so make sure to use this action only when necessary and with trusted players.
!!!