SteamWar/BauSystem2.0
Archiviert
12
0

Fix ScriptVarsCommand

Dieser Commit ist enthalten in:
yoyosource 2021-05-02 16:45:53 +02:00
Ursprung 5a5a59305a
Commit 59a9a0dcfc

Datei anzeigen

@ -76,7 +76,7 @@ public class ScriptVarsCommand extends SWCommand {
} }
@Register @Register
public void setValueCommand(Player p, String varName, long value) { public void setValueCommand(Player p, String varName, int value) {
Context context = ScriptListener.getGlobalContext(p); Context context = ScriptListener.getGlobalContext(p);
context.putValue(varName, new Value.LongValue(value)); context.putValue(varName, new Value.LongValue(value));
p.sendMessage(BauSystem.PREFIX + varName + " auf " + value + " gesetzt"); p.sendMessage(BauSystem.PREFIX + varName + " auf " + value + " gesetzt");