mirror of
https://gitlab.com/veloren/veloren.git
synced 2024-08-30 18:12:32 +00:00
fix hints
This commit is contained in:
parent
884a5d9c51
commit
5b907ede9e
@ -530,7 +530,7 @@ Willenskraft
|
|||||||
"NPCs mit demselben Level können unterschiedlich schwierig zu besiegen sein.",
|
"NPCs mit demselben Level können unterschiedlich schwierig zu besiegen sein.",
|
||||||
"Behaltet den Boden um euch im Blick! Dort gibt es Nahrung, Kisten und Anderes zu finden.",
|
"Behaltet den Boden um euch im Blick! Dort gibt es Nahrung, Kisten und Anderes zu finden.",
|
||||||
"Ist Euer Inventar voll mit Nahrung? Wertet es einfach durch Crafting auf!",
|
"Ist Euer Inventar voll mit Nahrung? Wertet es einfach durch Crafting auf!",
|
||||||
"Ihr sucht nach einem Abenteuer? Dungeons sind mit braunen Markierungen auf der Karte vermerkt!",
|
"Ihr sucht nach einem Abenteuer? Dungeons sind mit Markierungen auf der Karte vermerkt!",
|
||||||
"Vergesst nicht Eure Grafikeinstellungen anzupassen! Mit 'N' kommt ihr in die Einstellungen.",
|
"Vergesst nicht Eure Grafikeinstellungen anzupassen! Mit 'N' kommt ihr in die Einstellungen.",
|
||||||
"Zusammen kämpfen macht mehr Spaß! Drückt 'O' um Eure Mitspieler anzuzeigen.",
|
"Zusammen kämpfen macht mehr Spaß! Drückt 'O' um Eure Mitspieler anzuzeigen.",
|
||||||
"Ein NPC mit einem Schädel unter seiner Lebensanzeige ist deutlich stärker als Ihr.",
|
"Ein NPC mit einem Schädel unter seiner Lebensanzeige ist deutlich stärker als Ihr.",
|
||||||
|
@ -553,7 +553,7 @@ Protection
|
|||||||
"NPCs with the same level can have a different difficulty.",
|
"NPCs with the same level can have a different difficulty.",
|
||||||
"Keep an eye out for food, chests and other loot spread all around the world!",
|
"Keep an eye out for food, chests and other loot spread all around the world!",
|
||||||
"Inventory filled with food? Try crafting better food from it!",
|
"Inventory filled with food? Try crafting better food from it!",
|
||||||
"Wondering what's there to do? Dungeons are marked with brown spots on the map!",
|
"Wondering what's there to do? Try out one of the dungeons marked on the map!",
|
||||||
"Don't forget to adjust the graphics for your system. Press 'N' to open the settings.",
|
"Don't forget to adjust the graphics for your system. Press 'N' to open the settings.",
|
||||||
"Playing with others is fun! Press 'O' to see who is online.",
|
"Playing with others is fun! Press 'O' to see who is online.",
|
||||||
"An NPC with a skull beneath their healthbar is quite powerful compared to yourself.",
|
"An NPC with a skull beneath their healthbar is quite powerful compared to yourself.",
|
||||||
|
@ -485,7 +485,7 @@ impl<'a> Widget for Map<'a> {
|
|||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
// TODO: Pass actual difficulty in here
|
// TODO: Pass actual difficulty in here
|
||||||
let dif = (i as f64 / 100.0 * 6.0) as u8;
|
let dif = 0.0 as u8;
|
||||||
let title = match &site.kind {
|
let title = match &site.kind {
|
||||||
SiteKind::Town => "Town",
|
SiteKind::Town => "Town",
|
||||||
SiteKind::Dungeon => "Dungeon",
|
SiteKind::Dungeon => "Dungeon",
|
||||||
@ -526,7 +526,7 @@ impl<'a> Widget for Map<'a> {
|
|||||||
SiteKind::Dungeon => self.imgs.mmap_site_dungeon_hover,
|
SiteKind::Dungeon => self.imgs.mmap_site_dungeon_hover,
|
||||||
SiteKind::Castle => self.imgs.mmap_site_castle_hover,
|
SiteKind::Castle => self.imgs.mmap_site_castle_hover,
|
||||||
})
|
})
|
||||||
.image_color(UI_HIGHLIGHT_0)
|
.image_color(UI_HIGHLIGHT_0)
|
||||||
.parent(ui.window)
|
.parent(ui.window)
|
||||||
.with_tooltip(
|
.with_tooltip(
|
||||||
self.tooltip_manager,
|
self.tooltip_manager,
|
||||||
|
Loading…
Reference in New Issue
Block a user